Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading