diff options
author | Michael Muré <batolettre@gmail.com> | 2018-10-07 18:27:23 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-10-07 18:27:23 +0200 |
commit | 7cb7994cdae848053487d00c1730d1e865fb8623 (patch) | |
tree | bc9be185e81479d8d3e5b0fc636daea011a64e4c /graphql/gqlgen.yml | |
parent | 03202fed493539c8d1fdcad7254687f951d0ca4a (diff) | |
download | git-bug-7cb7994cdae848053487d00c1730d1e865fb8623.tar.gz |
github: also pull users email
Diffstat (limited to 'graphql/gqlgen.yml')
-rw-r--r-- | graphql/gqlgen.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/graphql/gqlgen.yml b/graphql/gqlgen.yml index 3932eafe..19bf686e 100644 --- a/graphql/gqlgen.yml +++ b/graphql/gqlgen.yml @@ -15,6 +15,15 @@ models: model: github.com/MichaelMure/git-bug/bug.Comment Person: model: github.com/MichaelMure/git-bug/bug.Person + fields: + name: + resolver: true + email: + resolver: true + login: + resolver: true + avatarUrl: + resolver: true Label: model: github.com/MichaelMure/git-bug/bug.Label Hash: @@ -27,6 +36,8 @@ models: model: github.com/MichaelMure/git-bug/bug.SetTitleOperation AddCommentOperation: model: github.com/MichaelMure/git-bug/bug.AddCommentOperation + EditCommentOperation: + model: github.com/MichaelMure/git-bug/bug.EditCommentOperation SetStatusOperation: model: github.com/MichaelMure/git-bug/bug.SetStatusOperation LabelChangeOperation: |