馃寠 A GraphQL implementation in Gleam
1---
2version: 1.4.1
3title: Simple input object with descriptions
4file: ./test/sdl_test.gleam
5test_name: simple_input_object_test
6---
7"""Input for creating or updating a user"""
8input UserInput {
9 """User's name"""
10 name: String
11 """User's email address"""
12 email: String!
13 """User's age"""
14 age: Int
15}