Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design1
/
Triz_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
sdy
2020-04-17 13:04:35 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d886224d8caac9c8d67e284448cea02e2c201013
d886224d
1 parent
104b1a04
add Test Query
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
back/src/api/TestQL/TestQL.graphql
back/src/api/TestQL/TestQL.js
back/src/api/TestQL/TestQL.graphql
0 → 100644
View file @
d886224
type Query {
TestQL(text: String!): String!
}
back/src/api/TestQL/TestQL.js
0 → 100644
View file @
d886224
export
default
{
Query
:
{
TestQL
:
async
(
_
,
args
)
=>
{
const
{
text
}
=
args
;
return
text
;
},
},
};
Please
register
or
login
to post a comment