Coder Social home page Coder Social logo

Nested and related data? about tinybase HOT 4 OPEN

tinyplex avatar tinyplex commented on May 16, 2024
Nested and related data?

from tinybase.

Comments (4)

jamesgpearce avatar jamesgpearce commented on May 16, 2024

Do you mean one-to-many (which hopefully can be modeled via the relationships or queries module) or many-to-many?

from tinybase.

cubecull avatar cubecull commented on May 16, 2024

I do indeed mean 1->many, so it sounds like I've missed an example or I'm misunderstanding something. Specifically I'm asking about how to use https://tinybase.org/api/queries/type-aliases/definition/join/ to achieve one->many queries.

I tried following the Movie Database demo as the closest example, but of course here the relationship is a many->many.

My workaround currently is to store the rowId of the source table row in the matching row of the target table and then execute two queries and join the data together manually. Not sure if this is the intended solution but it feels sub-optimal.

store.setTablesSchema({
  packets: {
    id: { type: 'string' },
    name: { type: 'string' },
  },
  byteRanges: {
    id: { type: 'string' },
    packetId: { type: 'string' },
    name: { type: 'string' },
  },
});

queries.setQueryDefinition('viewingPacket', 'packets', ({ select, where }) => {
  select('id');
  select('name');
  where('id', packetId);
});

queries.setQueryDefinition('viewingPacketByteRanges', 'byteRanges', ({ select, where }) => {
  select('id');
  select('packetId');
  select('name');
  where('packetId', packetId);
});

from tinybase.

jamesgpearce avatar jamesgpearce commented on May 16, 2024

Ok so I see the challenge here: you are using a cell called 'Id' rather than the native rowId (which is used in join conditions).

It's not possible to create a join based on columns in both tables. Instead you need to create an expression based on columns in one table (the 'root' table) that identifies the rowId to join to.

Is it possible for you to use id also as the rowId?

from tinybase.

jamesgpearce avatar jamesgpearce commented on May 16, 2024

...Not to say your requirement isn't a valid one - just seeing if that helps you out for now.

from tinybase.

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.