All checks were successful
Publish Docker Image / Publish Docker Image (push) Successful in 39s
20 lines
306 B
TypeScript
Executable File
20 lines
306 B
TypeScript
Executable File
export const schema = gql`
|
|
type Resume {
|
|
id: Int!
|
|
fileId: URL!
|
|
}
|
|
|
|
type Query {
|
|
resume: Resume @skipAuth
|
|
}
|
|
|
|
input CreateResumeInput {
|
|
fileId: URL!
|
|
}
|
|
|
|
type Mutation {
|
|
createResume(input: CreateResumeInput!): Resume! @requireAuth
|
|
deleteResume: Resume! @requireAuth
|
|
}
|
|
`
|