Skip to content
This repository was archived by the owner on May 26, 2022. It is now read-only.

Expressing names for source and target node type fields on relationship types #57

Merged
merged 3 commits into from
Oct 23, 2020
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
26 changes: 26 additions & 0 deletions website/docs/graphql-relationship-types.mdx
Original file line number Diff line number Diff line change
@@ -105,6 +105,32 @@ Here we query for a user and their movie ratings, selecting the `rating` and `cr
}`} />
</div>

## Field names for related nodes

There are two valid ways to express which fields of a `@relation` type refer to its [source and target node](https://neo4j.com/docs/getting-started/current/graphdb-concepts/#graphdb-relationship-types) types. The `Rated` relationship type above defines `from` and `to` fields. Semantically specific names can be provided for the source and target node fields to the `from` and `to` arguments of the `@relation` type directive.

```graphql
type Rated @relation(name: "RATED", from: "user", to: "movie") {
user: User
movie: Movie
rating: Float
created: DateTime
}
```

## Default relationship name

If the `name` argument of the `@relation` type directive is not provided, then its default is generated during schema augmentation to be the conversion of the type name to Snake case.

```graphql
type UserRated @relation(from: "user", to: "movie") { # name: "USER_RATED"
user: User
movie: Movie
rating: Float
created: DateTime
}
```

## Relationship mutations

See the [generated mutations](graphql-schema-generation-augmentation.mdx#generated-mutations) section for information on the mutations generated for relationship types.