github.com/animeshon/gqlgen@v0.13.1-0.20210304133704-3a770431bb6d/example/config/todo.graphql (about)

     1  type Todo {
     2    id: ID! @goField(forceResolver: true)
     3    databaseId: Int!
     4    text: String!
     5    done: Boolean!
     6    user: User!
     7  }
     8  
     9  input NewTodo {
    10    text: String!
    11    userId: String!
    12  }