Skip to content

Commit

Permalink
Merge pull request #3468 from ActiveState/mitchell/dx-3034
Browse files Browse the repository at this point in the history
Fixed queries with no arguments.
  • Loading branch information
mitchell-as authored Aug 29, 2024
2 parents 5123958 + 09eacdf commit 9065ff1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/platform/api/svc/request/fetchlogtail.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ func NewFetchLogTail() *FetchLogTail {
}

func (r *FetchLogTail) Query() string {
return `query() {
return `query {
fetchLogTail
}`
}
Expand Down
4 changes: 2 additions & 2 deletions pkg/platform/api/svc/request/jwt.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ func NewJWTRequest() *JWTRequest {
}

func (m *JWTRequest) Query() string {
return `query() {
getJWT() {
return `query {
getJWT {
token
user {
userID
Expand Down

0 comments on commit 9065ff1

Please sign in to comment.