YABGSMS

Creating, Reading, Updating and Deleting Users

How to perform simple CRUD actions on the User database.

User structure

Users are pretty simple. They have a username and a full name, and an ID. You can create, read, update, and delete users via their unique Identifier.

Note

You can view how these IDs are generated at the Identifiers page

Watch out!

Authenticating

You must be authorized to perform these actions. You can simple use the placeholder token by setting the Authorization header to secret

Schema:

type User {
    id: Int!
    username: String!
    fullName: String!
}

On this page