Skip to content

Commit

Permalink
Merge pull request #342 from bjwswang/gqlfix
Browse files Browse the repository at this point in the history
chore: invalid syntax in model.gql
  • Loading branch information
bjwswang authored Dec 8, 2023
2 parents 8fdfffc + c220249 commit 6fde2d7
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions graphql-server/go-server/graph/schema/model.gql
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ query listModels($input: ListCommonInput!,$filesInput: FileFilter){
}
}
}
}

# get
query getModel($name: String!, $namespace: String!,$filesInput: FileFilter) {
Expand All @@ -54,7 +55,7 @@ query getModel($name: String!, $namespace: String!,$filesInput: FileFilter) {
status
types
updateTimestamp
files(input: $filesInput: FileFilter) {
files(input: $filesInput) {
totalCount
hasNextPage
nodes {
Expand Down Expand Up @@ -117,4 +118,4 @@ mutation deleteModels($input: DeleteCommonInput) {
Model {
deleteModels(input: $input)
}
}
}

0 comments on commit 6fde2d7

Please sign in to comment.