Skip to content

Instantly share code, notes, and snippets.

@manakuro
Created May 12, 2022 23:33
Show Gist options
  • Save manakuro/2940b90d96cf5e8f3a3004ccfc55ff00 to your computer and use it in GitHub Desktop.
Save manakuro/2940b90d96cf5e8f3a3004ccfc55ff00 to your computer and use it in GitHub Desktop.
// CreateUserInput represents a mutation input for creating users.
type CreateUserInput struct {
Name string
Age int
CreatedAt *time.Time
UpdatedAt *time.Time
}
// UpdateUserInput represents a mutation input for updating users.
type UpdateUserInput struct {
ID int
Name *string
Age *int
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment