Giter VIP home page Giter VIP logo

Comments (2)

jeremydaly avatar jeremydaly commented on September 26, 2024 1

Hi @justynspooner! Thanks for the note. Every entity needs to have a partitionKey (and sortKey if applicable) on the PRIMARY INDEX. Secondary indexes are copies of the data, so in order to actually add the data to DynamoDB, it needs to be added to the Primary Index first, and will then get copied over to secondary indexes if they exist. This is not a function of the library, but of DynamoDB.

So in your example above, your entity would also need to specify a partitionKey:true and a sortKey:true on two of your attributes. If you are reusing your sk as the partitionKey of your GSI1, then your config should look like this:

const MyEntity = new Entity({
    name: "MyEntity",
    attributes: {
        pk: { partitionKey: true },
        sk: { sortKey: true, partitionKey: "GSI1"},
        data: {sortKey: "GSI1"},
    },
    table: MyTable
});

Hope that makes sense,
Jeremy

from dynamodb-toolbox.

justynspooner avatar justynspooner commented on September 26, 2024

That makes perfect sense now that I see it laid out like that. Might be worth adding a small example like that to the docs for those newer to DynamoDB like myself. Thank you for the quick reply I'll go and fix my code 😄

from dynamodb-toolbox.

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.