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-14 03:03:56 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
75891034eb4bd246fec429043bc2d072f9a0e212
75891034
1 parent
bf65d84d
init editCategory
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
back/src/api/Category/editCategory/editCategory.graphql
back/src/api/Category/editCategory/editCategory.js
back/src/api/Category/editCategory/editCategory.graphql
0 → 100644
View file @
7589103
type Mutation {
editCategory(id: String!): Category!
}
back/src/api/Category/editCategory/editCategory.js
0 → 100644
View file @
7589103
import
{
prisma
}
from
"../../../middlewares"
;
export
default
{
Mutation
:
{
editCategory
:
async
(
_
,
args
)
=>
{
const
{
id
}
=
args
;
},
},
};
Please
register
or
login
to post a comment