Skip to content
This repository has been archived by the owner on Oct 2, 2023. It is now read-only.

Commit

Permalink
graphQL query for author (modified) (#247)
Browse files Browse the repository at this point in the history
* scmAuthorname fix

* getLDAPDN fix

* scmAuthorname fix

* GraphQA add name : author-> user-> name

* GraphQA add name : author-> user-> name

* GraphQA add name : author-> user-> name
  • Loading branch information
nireeshT authored Oct 19, 2021
1 parent 30fc661 commit 5d345e6
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<artifactId>api</artifactId>
<packaging>jar</packaging>
<name>${project.groupId}:${project.artifactId}</name>
<version>3.4.25</version>
<version>3.4.26</version>
<description>Hygieia Rest API Layer</description>
<url>https://github.com/Hygieia/api</url>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,17 @@ public class GraphQLQuery {
" author {" +
" name" +
" date" +
" user {" +
" login" +
" }" +
" user {\n" +
" login\n" +
" name\n" +
" }\n" +
" }" +
" committer {" +
" name" +
" date" +
" user {" +
" login" +
" name" +
" }" +
" }" +
" parents(first: 10) {" +
Expand Down Expand Up @@ -66,6 +68,7 @@ public class GraphQLQuery {
" name" +
" user {" +
" login" +
" name" +
" }" +
" email" +
" date" +
Expand Down Expand Up @@ -123,6 +126,7 @@ public class GraphQLQuery {
" date" +
" user {" +
" login" +
" name" +
" }" +
" }" +
" }" +
Expand Down

0 comments on commit 5d345e6

Please sign in to comment.