implemented copy paste

This commit is contained in:
2021-08-16 01:42:29 +02:00
parent 4d85a419cc
commit 8344766ae3
4 changed files with 71 additions and 6 deletions

5
src/graphql/copy.graphql Normal file
View File

@@ -0,0 +1,5 @@
mutation copy($src: ID!, $dest: ID!) {
copy(src: $src,dest: $dest){
id
}
}