Code Monkey home page Code Monkey logo

Comments (1)

kettanaito avatar kettanaito commented on August 20, 2024

Hi, @canrozanes. Thanks for raising this.

Tell me, would the usage of transient + derivative properties work for you?

const db = factory({
  user: {
    id: id(Number),
    // Create a transient "user.city" property.
    // It can be given initial value but it will never
    // be set on the user entities.
    city: transient(oneOf('city')),
    // Derive a public "user.cityId" foreign key
    // from the transient "user.city" one-of relationship.
    cityId: derivative(({ city }) => city.name),
  },
  city: {
    name: id(String),
  },
})

const user = db.user.create({
  id: 1,
  city: db.city.create({ name: 'London' }),
})

user.cityId // "London"
user.city // undefined

This is a non-existing API (yet).

I'm tackling this precise use case in the Data rewrite and I could use your feedback.

Why not use foreignKey()?

The API you proposed implies that the key given as the value to the user_id property would be identifiable as foreign. But in the context of operations (create/update/etc), those key are taken from the existing extraneous models (like user), and will know nothing about post.userId having to be foreign.

To put plainly, it becomes problematic to ensure the contract with this kind of API.

from data.

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.