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-09 18:40:51 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f3b390ed6f39335a7f68d8bacc7304789377ac43
f3b390ed
1 parent
373e9dd3
first typedef, resolver for test
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
back/src/api/first/first.graphql
back/src/api/first/first.js
back/src/api/first/first.graphql
0 → 100644
View file @
f3b390e
1
+
type Query {
2
+
hello(text: String): String!
3
+
}
back/src/api/first/first.js
0 → 100644
View file @
f3b390e
1
+
export
default
{
2
+
Query
:
{
3
+
hello
:
(
_
,
args
)
=>
{
4
+
const
{
text
}
=
args
;
5
+
return
text
;
6
+
}
7
+
}
8
+
}
...
\ No newline at end of file
...
\ No newline at end of file
Please
register
or
login
to post a comment