| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447 |
- query userbyid($id: ID) {
- userbyid: user_by_id(id: $id) {
- email
- updatedAt
- admin
- password
- telephone
- nickname
- username
- createdAt
- openid
- id
- }
- }
- query serverbyprops($name: String, $description: String, $img: String, $createdAt: String, $updatedAt: String) {
- serverbyprops: server_by_props(name: $name description: $description img: $img createdAt: $createdAt updatedAt: $updatedAt) {
- id
- name
- description
- img
- createdAt
- updatedAt
- }
- }
- query servicebyid($id: ID) {
- servicebyid: service_by_id(id: $id) {
- id
- server_id {
- id
- name
- description
- img
- createdAt
- updatedAt
- }
- repertory_id {
- id
- count
- createdAt
- updatedAt
- }
- description
- price
- startTime
- lastTime
- createdAt
- updatedAt
- }
- }
- query repertorybyid($id: ID) {
- repertorybyid: repertory_by_id(id: $id) {
- id
- service_id {
- id
- description
- price
- startTime
- lastTime
- createdAt
- updatedAt
- }
- count
- createdAt
- updatedAt
- }
- }
- query orderbyid($id: ID) {
- orderbyid: order_by_id(id: $id) {
- payStatus
- contactName
- remark
- payCount
- updatedAt
- payTime
- contactTelephone
- createdAt
- orderStatus
- id
- user_id {
- email
- updatedAt
- admin
- password
- telephone
- nickname
- username
- createdAt
- openid
- id
- }
- service_id {
- id
- description
- price
- startTime
- lastTime
- createdAt
- updatedAt
- }
- customerNumber
- }
- }
- query repertorybyprops($service_id: ID, $count: Int, $createdAt: String, $updatedAt: String) {
- repertorybyprops: repertory_by_props(service_id: $service_id count: $count createdAt: $createdAt updatedAt: $updatedAt) {
- id
- service_id {
- id
- description
- price
- startTime
- lastTime
- createdAt
- updatedAt
- }
- count
- createdAt
- updatedAt
- }
- }
- query servicebyprops($server_id: ID, $repertory_id: ID, $description: String, $price: Float, $startTime: String, $lastTime: String, $createdAt: String, $updatedAt: String) {
- servicebyprops: service_by_props(server_id: $server_id repertory_id: $repertory_id description: $description price: $price startTime: $startTime lastTime: $lastTime createdAt: $createdAt updatedAt: $updatedAt) {
- id
- server_id {
- id
- name
- description
- img
- createdAt
- updatedAt
- }
- repertory_id {
- id
- count
- createdAt
- updatedAt
- }
- description
- price
- startTime
- lastTime
- createdAt
- updatedAt
- }
- }
- query serverbyid($id: ID) {
- serverbyid: server_by_id(id: $id) {
- id
- name
- description
- img
- createdAt
- updatedAt
- }
- }
- query userbyprops($email: String, $updatedAt: String, $admin: String, $password: String, $telephone: String, $nickname: String, $username: String, $createdAt: String, $openid: String) {
- userbyprops: user_by_props(email: $email updatedAt: $updatedAt admin: $admin password: $password telephone: $telephone nickname: $nickname username: $username createdAt: $createdAt openid: $openid) {
- email
- updatedAt
- admin
- password
- telephone
- nickname
- username
- createdAt
- openid
- id
- }
- }
- query orderbyprops($payStatus: String, $contactName: String, $remark: String, $payCount: String, $updatedAt: String, $payTime: String, $contactTelephone: String, $createdAt: String, $orderStatus: String, $user_id: ID, $service_id: ID, $customerNumber: Int) {
- orderbyprops: order_by_props(payStatus: $payStatus contactName: $contactName remark: $remark payCount: $payCount updatedAt: $updatedAt payTime: $payTime contactTelephone: $contactTelephone createdAt: $createdAt orderStatus: $orderStatus user_id: $user_id service_id: $service_id customerNumber: $customerNumber) {
- payStatus
- contactName
- remark
- payCount
- updatedAt
- payTime
- contactTelephone
- createdAt
- orderStatus
- id
- user_id {
- email
- updatedAt
- admin
- password
- telephone
- nickname
- username
- createdAt
- openid
- id
- }
- service_id {
- id
- description
- price
- startTime
- lastTime
- createdAt
- updatedAt
- }
- customerNumber
- }
- }
- mutation createuser($email: String, $updatedAt: String, $admin: String, $password: String, $telephone: String, $nickname: String, $username: String, $createdAt: String, $openid: String, $id: ID!) {
- createuser: create_user(email: $email updatedAt: $updatedAt admin: $admin password: $password telephone: $telephone nickname: $nickname username: $username createdAt: $createdAt openid: $openid id: $id) {
- email
- updatedAt
- admin
- password
- telephone
- nickname
- username
- createdAt
- openid
- id
- }
- }
- mutation updateuser($email: String, $updatedAt: String, $admin: String, $password: String, $telephone: String, $nickname: String, $username: String, $createdAt: String, $openid: String, $id: ID) {
- updateuser: update_user(email: $email updatedAt: $updatedAt admin: $admin password: $password telephone: $telephone nickname: $nickname username: $username createdAt: $createdAt openid: $openid id: $id) {
- email
- updatedAt
- admin
- password
- telephone
- nickname
- username
- createdAt
- openid
- id
- }
- }
- mutation updateservice($id: ID, $server_id: ID, $repertory_id: ID, $description: String, $price: Float, $startTime: String, $lastTime: String, $createdAt: String, $updatedAt: String) {
- updateservice: update_service(id: $id server_id: $server_id repertory_id: $repertory_id description: $description price: $price startTime: $startTime lastTime: $lastTime createdAt: $createdAt updatedAt: $updatedAt) {
- id
- server_id {
- id
- name
- description
- img
- createdAt
- updatedAt
- }
- repertory_id {
- id
- count
- createdAt
- updatedAt
- }
- description
- price
- startTime
- lastTime
- createdAt
- updatedAt
- }
- }
- mutation createservice($id: ID!, $server_id: ID, $repertory_id: ID, $description: String, $price: Float, $startTime: String, $lastTime: String, $createdAt: String, $updatedAt: String) {
- createservice: create_service(id: $id server_id: $server_id repertory_id: $repertory_id description: $description price: $price startTime: $startTime lastTime: $lastTime createdAt: $createdAt updatedAt: $updatedAt) {
- id
- server_id {
- id
- name
- description
- img
- createdAt
- updatedAt
- }
- repertory_id {
- id
- count
- createdAt
- updatedAt
- }
- description
- price
- startTime
- lastTime
- createdAt
- updatedAt
- }
- }
- mutation updateserver($id: ID, $name: String, $description: String, $img: String, $createdAt: String, $updatedAt: String) {
- updateserver: update_server(id: $id name: $name description: $description img: $img createdAt: $createdAt updatedAt: $updatedAt) {
- id
- name
- description
- img
- createdAt
- updatedAt
- }
- }
- mutation createrepertory($id: ID!, $service_id: ID, $count: Int, $createdAt: String, $updatedAt: String) {
- createrepertory: create_repertory(id: $id service_id: $service_id count: $count createdAt: $createdAt updatedAt: $updatedAt) {
- id
- service_id {
- id
- description
- price
- startTime
- lastTime
- createdAt
- updatedAt
- }
- count
- createdAt
- updatedAt
- }
- }
- mutation deleteorder($payStatus: String, $contactName: String, $remark: String, $payCount: String, $updatedAt: String, $payTime: String, $contactTelephone: String, $createdAt: String, $orderStatus: String, $id: ID, $user_id: ID, $service_id: ID, $customerNumber: Int) {
- deleteorder: delete_order(payStatus: $payStatus contactName: $contactName remark: $remark payCount: $payCount updatedAt: $updatedAt payTime: $payTime contactTelephone: $contactTelephone createdAt: $createdAt orderStatus: $orderStatus id: $id user_id: $user_id service_id: $service_id customerNumber: $customerNumber)
- }
- mutation deleteuser($email: String, $updatedAt: String, $admin: String, $password: String, $telephone: String, $nickname: String, $username: String, $createdAt: String, $openid: String, $id: ID) {
- deleteuser: delete_user(email: $email updatedAt: $updatedAt admin: $admin password: $password telephone: $telephone nickname: $nickname username: $username createdAt: $createdAt openid: $openid id: $id)
- }
- mutation createorder($payStatus: String, $contactName: String, $remark: String, $payCount: String, $updatedAt: String, $payTime: String, $contactTelephone: String, $createdAt: String, $orderStatus: String, $id: ID!, $user_id: ID, $service_id: ID, $customerNumber: Int) {
- createorder: create_order(payStatus: $payStatus contactName: $contactName remark: $remark payCount: $payCount updatedAt: $updatedAt payTime: $payTime contactTelephone: $contactTelephone createdAt: $createdAt orderStatus: $orderStatus id: $id user_id: $user_id service_id: $service_id customerNumber: $customerNumber) {
- payStatus
- contactName
- remark
- payCount
- updatedAt
- payTime
- contactTelephone
- createdAt
- orderStatus
- id
- user_id {
- email
- updatedAt
- admin
- password
- telephone
- nickname
- username
- createdAt
- openid
- id
- }
- service_id {
- id
- description
- price
- startTime
- lastTime
- createdAt
- updatedAt
- }
- customerNumber
- }
- }
- mutation deleterepertory($id: ID, $service_id: ID, $count: Int, $createdAt: String, $updatedAt: String) {
- deleterepertory: delete_repertory(id: $id service_id: $service_id count: $count createdAt: $createdAt updatedAt: $updatedAt)
- }
- mutation updateorder($payStatus: String, $contactName: String, $remark: String, $payCount: String, $updatedAt: String, $payTime: String, $contactTelephone: String, $createdAt: String, $orderStatus: String, $id: ID, $user_id: ID, $service_id: ID, $customerNumber: Int) {
- updateorder: update_order(payStatus: $payStatus contactName: $contactName remark: $remark payCount: $payCount updatedAt: $updatedAt payTime: $payTime contactTelephone: $contactTelephone createdAt: $createdAt orderStatus: $orderStatus id: $id user_id: $user_id service_id: $service_id customerNumber: $customerNumber) {
- payStatus
- contactName
- remark
- payCount
- updatedAt
- payTime
- contactTelephone
- createdAt
- orderStatus
- id
- user_id {
- email
- updatedAt
- admin
- password
- telephone
- nickname
- username
- createdAt
- openid
- id
- }
- service_id {
- id
- description
- price
- startTime
- lastTime
- createdAt
- updatedAt
- }
- customerNumber
- }
- }
- mutation deleteserver($id: ID, $name: String, $description: String, $img: String, $createdAt: String, $updatedAt: String) {
- deleteserver: delete_server(id: $id name: $name description: $description img: $img createdAt: $createdAt updatedAt: $updatedAt)
- }
- mutation deleteservice($id: ID, $server_id: ID, $repertory_id: ID, $description: String, $price: Float, $startTime: String, $lastTime: String, $createdAt: String, $updatedAt: String) {
- deleteservice: delete_service(id: $id server_id: $server_id repertory_id: $repertory_id description: $description price: $price startTime: $startTime lastTime: $lastTime createdAt: $createdAt updatedAt: $updatedAt)
- }
- mutation updaterepertory($id: ID, $service_id: ID, $count: Int, $createdAt: String, $updatedAt: String) {
- updaterepertory: update_repertory(id: $id service_id: $service_id count: $count createdAt: $createdAt updatedAt: $updatedAt) {
- id
- service_id {
- id
- description
- price
- startTime
- lastTime
- createdAt
- updatedAt
- }
- count
- createdAt
- updatedAt
- }
- }
- mutation createserver($id: ID!, $name: String, $description: String, $img: String, $createdAt: String, $updatedAt: String) {
- createserver: create_server(id: $id name: $name description: $description img: $img createdAt: $createdAt updatedAt: $updatedAt) {
- id
- name
- description
- img
- createdAt
- updatedAt
- }
- }
|