Skip to content

Commit

Permalink
Update to v3 SDL (#7086)
Browse files Browse the repository at this point in the history
  • Loading branch information
raddevon committed Mar 20, 2024
1 parent 4c37987 commit 0a7db62
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/clients/graphql/graphql.rst
Expand Up @@ -10,16 +10,16 @@ containing the following schema:
.. code-block:: sdl
type Author {
property name -> str;
name: str;
}
type Book {
# to make the examples simpler only the title is
# a required property
required property title -> str;
property synopsis -> str;
link author -> Author;
property isbn -> str {
required title: str;
synopsis: str;
author: Author;
isbn: str {
constraint max_len_value(10);
}
}
Expand Down

0 comments on commit 0a7db62

Please sign in to comment.