INPUT_OBJECT

CommitAuthor

Specifies an author for filtering Git commits.

link GraphQL Schema definition

  • input CommitAuthor {
  • # ID of a User to filter by. If non-null, only commits authored by this user will
  • # be returned. This field takes precedence over emails.
  • id: ID
  • # Email addresses to filter by. Commits authored by any of the specified email
  • # addresses will be returned.
  • emails: [String!]
  • }