Git Product home page Git Product logo

Comments (7)

interisti avatar interisti commented on August 15, 2024 7

@clarkie
Hi, thanks for awesome works.

I have the same case, but in my case i'm explicitly set default([]) in Joi schema for array field. Also from
http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html

An attribute value cannot be an empty String or empty Set (String Set, Number Set, or Binary Set). However, empty Lists and Maps are allowed.

Are there any reasons why empty arrays are not allowed?

from dynogels.

clarkie avatar clarkie commented on August 15, 2024 1

At the minute dynogels replicates the behaviours of dynamoDB. The underlying database doesn't allow empty strings (http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html) so I'm not sure it'd be a good idea to support that here.

from dynogels.

clarkie avatar clarkie commented on August 15, 2024

Are you saying that if you have a schema like this and create an item without any children then the children property doesn't exist? This is in line with the way the underlying db behaves.

const schema = {
  id: joi.number().integer(),
  children: vogels.types.stringSet()
}

const example = vogels.define('example', {
  hashKey: 'id',
  schema: schema,
});

example.create({id: 1},(err, volume) => {}

The same would be the case if you remove all items from a stringSet. The property will be removed completely.

example.update(1, {
  children: {
    $add: 'a',
  },
}, () => {});

example.update(1, {
  children: {
    $del: 'a',
  },
}, () => {});

If I've misunderstood the question then please let me know.

from dynogels.

amitava82 avatar amitava82 commented on August 15, 2024

Ah I see. I found that empty string is not saved in dynamo(!). Does that also mean it drops empty array?

In that case, is there any way to return object as per Schema definition (add missing properties even if missing from db response) for model consistency.

from dynogels.

madve2 avatar madve2 commented on August 15, 2024

The weird thing is that it Dynogels does support empty arrays – on updates. It just omits them on inserts.

So what I ended up doing is whenever I insert (edit: I mean, create) an entity, I immediately update it with "itself".

Feels stupid, but my use-case needs very few inserts thankfully, so I think I'll be fine with the overhead this causes.

from dynogels.

shihminlee avatar shihminlee commented on August 15, 2024

I'd like to reopen this issue if possible. Is there a reason that we omit empty arrays when you create them? There are scenarios where we actually need the array to be an empty array. Thanks.

from dynogels.

shihminlee avatar shihminlee commented on August 15, 2024

So with this change you would be able to create documents with empty arrays. Also you can create documents with default empty array if you specify it in your schema. What do you guys think? #194

from dynogels.

Related Issues (20)

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.