Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
U
UserAPI
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ajay R
UserAPI
Commits
7442632a
Commit
7442632a
authored
Sep 22, 2023
by
Ajay R
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unwanted files
parent
266d9fcc
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
25 deletions
+0
-25
schema.js
src/api/schema.js
+0
-25
server.js
src/api/server.js
+0
-0
No files found.
src/api/schema.js
deleted
100644 → 0
View file @
266d9fcc
// api/schema.js
const
{
gql
}
=
require
(
'apollo-server'
);
const
typeDefs
=
gql
`
type User {
id: ID!
name: String!
email: String!
}
type Query {
users: [User]
}
type Mutation {
createUser(input: UserInput!): User
}
input UserInput {
name: String!
email: String!
}
`
;
module
.
exports
=
typeDefs
;
src/api/server.js
deleted
100644 → 0
View file @
266d9fcc
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment