Skip to content

Commit

Permalink
update readme to fix #18
Browse files Browse the repository at this point in the history
  • Loading branch information
jifalops committed Mar 4, 2024
1 parent aa99a9b commit 2a7ac30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ let mut query = Query::new(format!(
"CREATE (n:{})",
Person::as_query_obj()
));
query = person.add_values_to_params(query);
query = person.add_values_to_params(query, None, StampMode::Create);
```

```rust
Expand Down Expand Up @@ -80,7 +80,7 @@ let mut query = Query::new(format!(
"MATCH (n:{}) RETURN n",
CompanyId::as_query_obj()
));
query = id.add_values_to_params(query);
query = id.add_values_to_params(query, None, StampMode::Read);
```

### Builder, new, and getters
Expand Down

0 comments on commit 2a7ac30

Please sign in to comment.