go.charczuk.com@v0.0.0-20240327042549-bc490516bd1a/projects/chirp/graph/schema.graphqls (about)

     1  type User {
     2    id: ID!
     3    created_utc: timestamptz!
     4    last_login_utc: timestamptz
     5    last_seen_utc: timestamptz
     6    given_name: String
     7    family_name: String
     8    profile_id: String
     9    picture_url: String!
    10    hero_url string
    11    locale: String!
    12    email: String!
    13    is_private:   boolean!
    14    is_admin:     boolean!
    15    description: string
    16  }
    17  
    18  type Chirp {
    19    id: ID!
    20    created_utc: timestamptz!
    21    published_utc: timestampz
    22    text: String!
    23  }