Skip to content

Commit

Permalink
Merge branch 'main' into automation/yarn-upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
mergify[bot] committed Apr 10, 2024
2 parents b324b2e + 1894f2d commit bd372cc
Show file tree
Hide file tree
Showing 28 changed files with 3,888 additions and 68 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/request-cli-integ-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
with:
# Needs to run with PROJEN_GITHUB_TOKEN because we need permissions to force push the branch
token: ${{ secrets.PROJEN_GITHUB_TOKEN }}
ref: ${{ github.event.pull_request.head.ref }}
ref: ${{ github.event.pull_request.head.sha }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
- name: Submit to test-pipeline
run: |
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
schema {
query: Query
mutation: Mutation
}

type Query {
getPost(id:ID!): Post
allPosts: [Post]
}

type Mutation {
addPost(id: ID!, author: String!, title: String, content: String, url: String): Post!
}

type Post {
id: ID!
author: String!
title: String
content: String
url: String
ups: Int
downs: Int
relatedPosts: [Post]
relatedPostsMaxBatchSize: [Post]
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit bd372cc

Please sign in to comment.