馃寠 A GraphQL implementation in Gleam
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.1.0 15 lines 307 B view raw
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}