Skip to content

Commit cd6a9cc

Browse files
committed
Add type modifier bullet to recap.
1 parent 41fe67b commit cd6a9cc

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/pages/learn/schema.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -552,6 +552,7 @@ To recap what we've learned about schemas and types:
552552
- Object types contain fields that specify output types, and those fields may have arguments that specify input types
553553
- The `Int``Float``String``Boolean`, and `ID` Scalar types are built into GraphQL, and you can also define your own custom scalars
554554
- Like Scalar types, Enum types represent leaf values in a GraphQL schema but they are limited to a finite set of values
555+
- The List (`[]`) and Non-Null (`!`) type modifiers allow you to change the default behavior for a field's output type or argument's input type
555556
- Interface and Union types are abstract types that allow different concrete Object types to be output from a single field
556557
- Input Object types allow you to pass more complex values into a field argument or directive argument than Scalar and Enum types allow
557558
- Type system directives can be applied to the types, fields, and arguments in a schema to alter how they are validated and executed during a query

0 commit comments

Comments
 (0)