Giter VIP home page Giter VIP logo

Comments (2)

tonsky avatar tonsky commented on May 18, 2024 2

@nahuel,

:db/id is not a real attribute. It is used to create “map” forms of an entity at insert stage. When you write

(d/transact! db [{:db/id -1 :name "Mazinger"}]

it means, essentially, this: take all key-value pairs from this map, convert them to [:db/add eid attr value] form where attr=key from map, value=value from map, and eid (entity id) is a special key :db/id from map. It’s just a convention. Results from entity calls support this convention too, as they have to represent datoms as maps.

But inside DataScript everything is stored as flat datoms of form [e a v], no maps. If your entity has 10 attributes, there’ll be 10 distinct datoms. Maps are just a convenient view of these internals.

Queries are written in pattern-match style over actual flat datoms, so you cannot use :db/id as it is not an actual datom attribute. When matching over entity id, just use first position, not last one:

(d/q `[:find ?name
       :where [~new-id :name ?name]] @db)

BTW it’s not recommended to use actual values inside query. For parametrized queries, use addtional :in agruments:

(d/q '[:find ?name
       :in $ ?e
       :where [?e :name ?name]] @db new-id)

from datascript.

nahuel avatar nahuel commented on May 18, 2024 1

Now it's crystal clear, many thanks for the detailed response!

from datascript.

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.