We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 229fc0c commit 43f2f8bCopy full SHA for 43f2f8b
packages/server/src/schema.graphql
@@ -24,6 +24,11 @@ type Mutation {
24
"""
25
bookmarkTutorial(tutorialId: ID!): UserTutorialPayload!
26
27
+ """
28
+ An authenticated user can update their current chapter in a tutorial.
29
30
+ upsertCurrentChapter(chapter: Int!, gatsbyID: String!): UserTutorialPayload!
31
+
32
33
Create tutorials from the MDX files
34
@@ -49,7 +54,7 @@ interface PayloadInterface {
49
54
}
50
55
51
56
type Query {
52
- gatsbyTutorialQuery(gatsbyID: String!): Tutorial!
57
+ getTutorialbyGatsbyID(gatsbyID: String!): Tutorial!
53
58
tutorial(id: ID!): Tutorial!
59
tutorials(first: Int!): [Tutorial!]
60
viewer: Viewer
0 commit comments