OBJECT
GitActor
Represents an actor in a Git commit (ie. an author or committer).
link GraphQL Schema definition
- type GitActor {
- # A URL pointing to the author's public avatar.
- #
- # Arguments
- # size: The size of the resulting square image.
- Int): String! ( :
- # The timestamp of the Git action (authoring or committing).
- GitTimestamp :
- # The email in the Git commit.
- String :
- # The name in the Git commit.
- String :
- # The GitHub user corresponding to the email field. Null if no such user exists.
- User :
- }