Code Monkey home page Code Monkey logo

isotopes's People

Contributors

dependabot-preview[bot] avatar dependabot-support avatar squidfunk avatar zephraph avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

isotopes's Issues

Get count of records

Description

No obvious ways to get a count of records matching some criteria using Isotope

Expected behavior

A method that would allow someone to call the equivalent of select count(*) where ...; obviously restricted to the type of record

see https://docs.aws.amazon.com/AmazonSimpleDB/latest/DeveloperGuide/CountingDataSelect.html

eg I was thinking something along the lines of

const expr = isotope
    .getQueryBuilder()
    .where('`active` = ? and `submitDate` >= ?', true, startDate);

const total = await isotope.count(expr);

Actual behavior

As far as I can tell, I would need to pull all the items to get a count which seems wasteful.

Package versions

  • isotopes: 0.6.1
  • aws-sdk: 2.987.0

Add region and endpoint additional config to readme

Great library! It might be useful in the docs to show how to configure the library, as follows:

   const seasons = new Isotope<Season>({
    domain: "seasons",                     
    key: "id"                            
  }, { region 		: 'US-East',
  endpoint 	: 'https://sdb.amazonaws.com'} );

Without this additional config, I couldn't get things working...

SimpleDB deprecation

Description

As titled, simpleDB in aws is deprecated and not available in most of cases (new regions or new accounts). While this project looks young still, should it be bump to any current available alternative like DynamoDB?

Expected behavior

Document updates and new release (could be a breaking change one)

Incorrect documentation for query a domain

Description

In the docs for Isotope the example for a query is

const expr = tasks.getQueryBuilder()
  .where("`active` = ?", true)
  .order("`props.memory >= ?`", 2048)
  .limit(100)

This is incorrect as you do not order by a predicate.

Expected behavior

it should possibly be

const expr = tasks.getQueryBuilder()
  .where("`active` = ?", true)
  .order("`props.memory`", 'asc')
  .limit(100)

however, when you try the above you will get an error like this

INFO InvalidSortExpression: Invalid sort expression. The sort attribute must be present in at least one of the predicates, and the predicate cannot contain the is null operator.

to make it work you need to add another predicate eg

const expr = tasks.getQueryBuilder()
  .where("`active` = ? and `props.memory` > ? ", true, 0)
  .order("`props.memory`", 'asc')
  .limit(100)

PS. thanks for the library - I moved from DynamoDB implementation to SimpleDB one in a few hours.

PPS. What tools do you use to manage SimpleDB if you don't mind me asking?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.