#dto #cypher #neo4j #query #graph

macro cypher-dto-macros

The macros for cypher-dto

5 unstable releases

0.3.1 Mar 24, 2024
0.3.0 Mar 1, 2024
0.2.0 Aug 12, 2023
0.1.1 Aug 7, 2023
0.1.0 Aug 6, 2023

#10 in #dto

Download history 7/week @ 2024-02-15 9/week @ 2024-02-22 159/week @ 2024-02-29 14/week @ 2024-03-07 4/week @ 2024-03-14 109/week @ 2024-03-21 26/week @ 2024-03-28 16/week @ 2024-04-04

151 downloads per month
Used in cypher-dto

MIT license

65KB
1.5K SLoC

cypher-dto-macros

Macros for working with the cypher-dto crate.

There are three types of macros contained:

  1. Derive macros, which do most of the work.

    #[derive(Node)]
    struct Person {
      id: String,
      name: String,
      #[name = "zip_code"]
      zip: String,
    }
    
    #[derive(Relation)]
    struct Knows;
    

    These will implement cypher_dto::{FieldSet, NodeEntity, RelationEntity} for the structs.

    There are two helper attributes that come into scope when using the derive macros, #[id], and #[name].

    #[id] marks a field as being part of the entity's uniquely identifying set of fields. Multi-valued identifiers are supported this way. If none are specified and a field named id exists, that will be inferred to be the only id field. The set of id fields is given its own struct, e.g. PersonId, that can be obtained via person.identifier() or person.into().

    #[name] allows the property name in the database to be different than on the struct. #[name = "..."] and #[name("...")] are supported, and can be applied to the struct as well.

    A builder is also generated for each struct, e.g. PersonBuilder. It can be obtained via person.into_builder().

  2. The #[timestamps] macro, which will add one or two timestamp fields to the struct. By default it adds two fields, created_at and updated_at, with the type Option<DateTime<Utc>>. Optional timestamp fields let the Person::new() implementation skip having them as arguments, which is how you would create a DTO in application code before it is created in the database.

    You can control which fields it adds by specifying certain values as a string (#[timestamps = "..."] and #[timestamps("...")] are supported). The values must be ONE of full (the default), short (created, updated), created_at, updated_at, created, or updated.

Dependencies

~0.9–1.4MB
~28K SLoC