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
2 changes: 1 addition & 1 deletion guides/type_definitions/unions.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ desc: Unions are sets of types which may appear in the same place (but don't sha
index: 5
---

A union type is a set of object types which may appear in the same spot. Here's a union, expressed in [GraphQL Schema Definition Language](https://graphql.org/learn/schema/#type-language) (SDL):
A union type is a set of object types which may appear in the same spot. Here's a union, expressed in [GraphQL Schema Definition Language](https://graphql.org/learn/schema/#union-types) (SDL):

```ruby
union MediaItem = AudioClip | VideoClip | Image | TextSnippet
Expand Down
Loading