Skip to content

Commit

Permalink
Merge pull request #177 from mariusbutuc/patch-1
Browse files Browse the repository at this point in the history
[typo] Update reference.adoc
  • Loading branch information
rsill-neo4j authored Oct 4, 2024
2 parents 44f8a8a + d7e5c5c commit f684297
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/ROOT/pages/ogm/reference.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ await Movie.create({ input: [{ title: "The Matrix" }] })
=== `delete`

This method can be used to delete nodes, and maps to the underlying xref::mutations/delete.adoc[Delete] Mutation.
It returns a `Promise` which resolvers to a `DeleteInfo` object:
It returns a `Promise` which resolves to a `DeleteInfo` object:

[cols="1,1,1"]
|===
Expand Down Expand Up @@ -340,7 +340,7 @@ await User.delete({ where: { name: "Dan" }});
=== `find`

This method can be used to find nodes, and maps to the underlying schema xref::queries-aggregations/queries.adoc[Queries].
It returns a `Promise` which resolvers to an array of objects matching the type of the Model.
It returns a `Promise` which resolves to an array of objects matching the type of the Model.

==== Arguments

Expand Down

0 comments on commit f684297

Please sign in to comment.