shopExists
ShopExistsResult!
GraphQL API v1 — Queries & Mutations
Gennova provides a single GraphQL endpoint for all operations. Send POST requests with your query or mutation.
https://graphql.gennovadev.com/v1
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-d '{"query": "{ shopExists { id } }"}'
All requests require x-gennova-domain. Protected endpoints need additional headers:
x-gennova-domain only. Examples: shopExists, shopLogin.
x-gennova-dashboard-access-token with OAuth2 access token.
x-gennova-api-access-token for server-to-server calls.
ShopExistsResult!
No parameters
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com
query Query_shopExists { shopExists { id } }
{}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-d {"query": "query Query_shopExists { shopExists { id } }", "variables": {}}
HTTP 200 OK
{
"data": {
"shopExists": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
AmisACTOpenAccounts
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisACTOpenAccount($id: Int!) { amisACTOpenAccount(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisACTOpenAccount($id: Int!) { amisACTOpenAccount(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"amisACTOpenAccount": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[AmisACTOpenAccounts!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
AmisACTOpenAccountsWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisACTOpenAccounts($limit: Int, $offset: Int, $where: AmisACTOpenAccountsWhereInput, $orderby: [OrderByInput!], $search: String) { amisACTOpenAccounts(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"account_id": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisACTOpenAccounts($limit: Int, $offset: Int, $where: AmisACTOpenAccountsWhereInput, $orderby: [OrderByInput!], $search: String) { amisACTOpenAccounts(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "account_id": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"amisACTOpenAccounts": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
AmisACTOpenAllOrganizationUnits
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisACTOpenAllOrganizationUnit($id: Int!) { amisACTOpenAllOrganizationUnit(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisACTOpenAllOrganizationUnit($id: Int!) { amisACTOpenAllOrganizationUnit(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"amisACTOpenAllOrganizationUnit": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[AmisACTOpenAllOrganizationUnits!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
AmisACTOpenAllOrganizationUnitsWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisACTOpenAllOrganizationUnits($limit: Int, $offset: Int, $where: AmisACTOpenAllOrganizationUnitsWhereInput, $orderby: [OrderByInput!], $search: String) { amisACTOpenAllOrganizationUnits(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"organization_unit_id": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisACTOpenAllOrganizationUnits($limit: Int, $offset: Int, $where: AmisACTOpenAllOrganizationUnitsWhereInput, $orderby: [OrderByInput!], $search: String) { amisACTOpenAllOrganizationUnits(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "organization_unit_id": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"amisACTOpenAllOrganizationUnits": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
AmisAccountObjects
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisAccountObject($id: Int!) { amisAccountObject(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisAccountObject($id: Int!) { amisAccountObject(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"amisAccountObject": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[AmisAccountObjects!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
AmisAccountObjectsWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisAccountObjects($limit: Int, $offset: Int, $where: AmisAccountObjectsWhereInput, $orderby: [OrderByInput!], $search: String) { amisAccountObjects(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"dictionary_type": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisAccountObjects($limit: Int, $offset: Int, $where: AmisAccountObjectsWhereInput, $orderby: [OrderByInput!], $search: String) { amisAccountObjects(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "dictionary_type": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"amisAccountObjects": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
AmisBankAccounts
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisBankAccount($id: Int!) { amisBankAccount(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisBankAccount($id: Int!) { amisBankAccount(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"amisBankAccount": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[AmisBankAccounts!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
AmisBankAccountsWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisBankAccounts($limit: Int, $offset: Int, $where: AmisBankAccountsWhereInput, $orderby: [OrderByInput!], $search: String) { amisBankAccounts(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"account_holder": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisBankAccounts($limit: Int, $offset: Int, $where: AmisBankAccountsWhereInput, $orderby: [OrderByInput!], $search: String) { amisBankAccounts(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "account_holder": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"amisBankAccounts": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
AmisCompanyInfo
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisCompanyInfo($id: Int!) { amisCompanyInfo(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisCompanyInfo($id: Int!) { amisCompanyInfo(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"amisCompanyInfo": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[AmisCompanyInfo!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
AmisCompanyInfoWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisCompanyInfos($limit: Int, $offset: Int, $where: AmisCompanyInfoWhereInput, $orderby: [OrderByInput!], $search: String) { amisCompanyInfos(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"company_address": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"company_name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"company_tax_code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisCompanyInfos($limit: Int, $offset: Int, $where: AmisCompanyInfoWhereInput, $orderby: [OrderByInput!], $search: String) { amisCompanyInfos(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "company_name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "company_address": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "company_tax_code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"amisCompanyInfos": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
AmisExpenseItems
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisExpenseItem($id: Int!) { amisExpenseItem(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisExpenseItem($id: Int!) { amisExpenseItem(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"amisExpenseItem": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[AmisExpenseItems!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
AmisExpenseItemsWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisExpenseItems($limit: Int, $offset: Int, $where: AmisExpenseItemsWhereInput, $orderby: [OrderByInput!], $search: String) { amisExpenseItems(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"expense_item_id": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisExpenseItems($limit: Int, $offset: Int, $where: AmisExpenseItemsWhereInput, $orderby: [OrderByInput!], $search: String) { amisExpenseItems(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "expense_item_id": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"amisExpenseItems": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
AmisInventoryItems
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisInventoryItem($id: Int!) { amisInventoryItem(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisInventoryItem($id: Int!) { amisInventoryItem(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"amisInventoryItem": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[AmisInventoryItems!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
AmisInventoryItemsWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisInventoryItems($limit: Int, $offset: Int, $where: AmisInventoryItemsWhereInput, $orderby: [OrderByInput!], $search: String) { amisInventoryItems(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"inventory_item_id": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisInventoryItems($limit: Int, $offset: Int, $where: AmisInventoryItemsWhereInput, $orderby: [OrderByInput!], $search: String) { amisInventoryItems(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "inventory_item_id": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"amisInventoryItems": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
AmisJobs
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisJob($id: Int!) { amisJob(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisJob($id: Int!) { amisJob(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"amisJob": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[AmisJobs!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
AmisJobsWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisJobs($limit: Int, $offset: Int, $where: AmisJobsWhereInput, $orderby: [OrderByInput!], $search: String) { amisJobs(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"job_id": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisJobs($limit: Int, $offset: Int, $where: AmisJobsWhereInput, $orderby: [OrderByInput!], $search: String) { amisJobs(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "job_id": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"amisJobs": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
AmisLastSyncTimes
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisLastSyncTim($id: Int!) { amisLastSyncTim(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisLastSyncTim($id: Int!) { amisLastSyncTim(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"amisLastSyncTim": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[AmisLastSyncTimes!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
AmisLastSyncTimesWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisLastSyncTimes($limit: Int, $offset: Int, $where: AmisLastSyncTimesWhereInput, $orderby: [OrderByInput!], $search: String) { amisLastSyncTimes(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"account_object": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"inventory_item": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"shop_channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"stock": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisLastSyncTimes($limit: Int, $offset: Int, $where: AmisLastSyncTimesWhereInput, $orderby: [OrderByInput!], $search: String) { amisLastSyncTimes(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "account_object": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "inventory_item": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "stock": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}}}}
HTTP 200 OK
{
"data": {
"amisLastSyncTimes": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
AmisListInventoryBalance
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisListInventoryBalance($id: Int!) { amisListInventoryBalance(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisListInventoryBalance($id: Int!) { amisListInventoryBalance(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"amisListInventoryBalance": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[AmisListInventoryBalance!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
AmisListInventoryBalanceWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisListInventoryBalances($limit: Int, $offset: Int, $where: AmisListInventoryBalanceWhereInput, $orderby: [OrderByInput!], $search: String) { amisListInventoryBalances(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"inventory_item_id": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisListInventoryBalances($limit: Int, $offset: Int, $where: AmisListInventoryBalanceWhereInput, $orderby: [OrderByInput!], $search: String) { amisListInventoryBalances(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "inventory_item_id": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"amisListInventoryBalances": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
AmisOptions
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisOption($id: Int!) { amisOption(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisOption($id: Int!) { amisOption(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"amisOption": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[AmisOptions!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
AmisOptionsWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisOptions($limit: Int, $offset: Int, $where: AmisOptionsWhereInput, $orderby: [OrderByInput!], $search: String) { amisOptions(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"AllocationDecimalDigits": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"AmountDecimalDigits": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"AmountOCDecimalDigits": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisOptions($limit: Int, $offset: Int, $where: AmisOptionsWhereInput, $orderby: [OrderByInput!], $search: String) { amisOptions(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "AllocationDecimalDigits": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "AmountDecimalDigits": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "AmountOCDecimalDigits": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"amisOptions": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
AmisPaymentTerms
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisPaymentTerm($id: Int!) { amisPaymentTerm(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisPaymentTerm($id: Int!) { amisPaymentTerm(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"amisPaymentTerm": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[AmisPaymentTerms!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
AmisPaymentTermsWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisPaymentTerms($limit: Int, $offset: Int, $where: AmisPaymentTermsWhereInput, $orderby: [OrderByInput!], $search: String) { amisPaymentTerms(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"payment_term_id": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisPaymentTerms($limit: Int, $offset: Int, $where: AmisPaymentTermsWhereInput, $orderby: [OrderByInput!], $search: String) { amisPaymentTerms(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "payment_term_id": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"amisPaymentTerms": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
AmisProjectWorks
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisProjectWork($id: Int!) { amisProjectWork(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisProjectWork($id: Int!) { amisProjectWork(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"amisProjectWork": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[AmisProjectWorks!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
AmisProjectWorksWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisProjectWorks($limit: Int, $offset: Int, $where: AmisProjectWorksWhereInput, $orderby: [OrderByInput!], $search: String) { amisProjectWorks(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"project_work_id": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisProjectWorks($limit: Int, $offset: Int, $where: AmisProjectWorksWhereInput, $orderby: [OrderByInput!], $search: String) { amisProjectWorks(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "project_work_id": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"amisProjectWorks": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
AmisSettings
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisSetting($id: Int!) { amisSetting(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisSetting($id: Int!) { amisSetting(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"amisSetting": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[AmisSettings!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
AmisSettingsWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisSettings($limit: Int, $offset: Int, $where: AmisSettingsWhereInput, $orderby: [OrderByInput!], $search: String) { amisSettings(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"active_api": {
"eq": false,
"is_null": false,
"ne": false
},
"active_orders_api": {
"eq": false,
"is_null": false,
"ne": false
},
"active_products_api": {
"eq": false,
"is_null": false,
"ne": false
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisSettings($limit: Int, $offset: Int, $where: AmisSettingsWhereInput, $orderby: [OrderByInput!], $search: String) { amisSettings(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "active_api": {"eq": false, "ne": false, "is_null": false}, "active_products_api": {"eq": false, "ne": false, "is_null": false}, "active_orders_api": {"eq": false, "ne": false, "is_null": false}}}}
HTTP 200 OK
{
"data": {
"amisSettings": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
AmisStocks
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisStock($id: Int!) { amisStock(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisStock($id: Int!) { amisStock(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"amisStock": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[AmisStocks!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
AmisStocksWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisStocks($limit: Int, $offset: Int, $where: AmisStocksWhereInput, $orderby: [OrderByInput!], $search: String) { amisStocks(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"branch_id": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisStocks($limit: Int, $offset: Int, $where: AmisStocksWhereInput, $orderby: [OrderByInput!], $search: String) { amisStocks(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "branch_id": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"amisStocks": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
AmisUnits
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisUnit($id: Int!) { amisUnit(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisUnit($id: Int!) { amisUnit(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"amisUnit": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[AmisUnits!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
AmisUnitsWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_amisUnits($limit: Int, $offset: Int, $where: AmisUnitsWhereInput, $orderby: [OrderByInput!], $search: String) { amisUnits(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"dictionary_type": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_amisUnits($limit: Int, $offset: Int, $where: AmisUnitsWhereInput, $orderby: [OrderByInput!], $search: String) { amisUnits(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "dictionary_type": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"amisUnits": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[Country!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
CountryWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_countries($limit: Int, $offset: Int, $where: CountryWhereInput, $orderby: [OrderByInput!], $search: String) { countries(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"gennova_uuid": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_countries($limit: Int, $offset: Int, $where: CountryWhereInput, $orderby: [OrderByInput!], $search: String) { countries(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "gennova_uuid": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"countries": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
Country
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_country($id: Int!) { country(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_country($id: Int!) { country(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"country": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DashboardApis!
No parameters
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com
query Query_dashboardApis { dashboardApis { id } }
{}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-d {"query": "query Query_dashboardApis { dashboardApis { id } }", "variables": {}}
HTTP 200 OK
{
"data": {
"dashboardApis": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
District
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_district($id: Int!) { district(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_district($id: Int!) { district(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"district": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[District!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
DistrictWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_districts($limit: Int, $offset: Int, $where: DistrictWhereInput, $orderby: [OrderByInput!], $search: String) { districts(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"country_code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_districts($limit: Int, $offset: Int, $where: DistrictWhereInput, $orderby: [OrderByInput!], $search: String) { districts(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "country_code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"districts": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
FileResponse!
| name | type | details |
|---|---|---|
key_or_url |
String! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_fileExists($key_or_url: String!) { fileExists(key_or_url: $key_or_url) { id } }
{
"key_or_url": "string"
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_fileExists($key_or_url: String!) { fileExists(key_or_url: $key_or_url) { id } }", "variables": {"key_or_url": "string"}}
HTTP 200 OK
{
"data": {
"fileExists": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
JSON
| name | type | details |
|---|---|---|
fulfillment_type |
String! |
Required
Loại fulfillment: "purchase_order" | "order" | "return_order" | "purchase_return_order"
|
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_fulfillmentStatusOptions($fulfillment_type: String!) { fulfillmentStatusOptions(fulfillment_type: $fulfillment_type) }
{
"fulfillment_type": "string"
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_fulfillmentStatusOptions($fulfillment_type: String!) { fulfillmentStatusOptions(fulfillment_type: $fulfillment_type) }", "variables": {"fulfillment_type": "string"}}
HTTP 200 OK
{
"data": {
"fulfillmentStatusOptions": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
MeinvoiceTemplate
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_meinvoiceTemplate($id: Int!) { meinvoiceTemplate(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_meinvoiceTemplate($id: Int!) { meinvoiceTemplate(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"meinvoiceTemplate": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[MeinvoiceTemplate!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
MeinvoiceTemplateWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_meinvoiceTemplates($limit: Int, $offset: Int, $where: MeinvoiceTemplateWhereInput, $orderby: [OrderByInput!], $search: String) { meinvoiceTemplates(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"ip_template_id": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_meinvoiceTemplates($limit: Int, $offset: Int, $where: MeinvoiceTemplateWhereInput, $orderby: [OrderByInput!], $search: String) { meinvoiceTemplates(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "ip_template_id": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"meinvoiceTemplates": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
MemberSessionInfo!
No parameters
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_memberSessionInfo { memberSessionInfo { id } }
{}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_memberSessionInfo { memberSessionInfo { id } }", "variables": {}}
HTTP 200 OK
{
"data": {
"memberSessionInfo": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
String!
No parameters
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com
query Query_ping { ping }
{}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-d {"query": "query Query_ping { ping }", "variables": {}}
HTTP 200 OK
{
"data": {
"ping": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
Province
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_province($id: Int!) { province(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_province($id: Int!) { province(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"province": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[Province!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ProvinceWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_provinces($limit: Int, $offset: Int, $where: ProvinceWhereInput, $orderby: [OrderByInput!], $search: String) { provinces(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"country_code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_provinces($limit: Int, $offset: Int, $where: ProvinceWhereInput, $orderby: [OrderByInput!], $search: String) { provinces(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "country_code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"provinces": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
SapoLocation
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_sapoLocation($id: Int!) { sapoLocation(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_sapoLocation($id: Int!) { sapoLocation(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"sapoLocation": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[SapoLocation!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
SapoLocationWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_sapoLocations($limit: Int, $offset: Int, $where: SapoLocationWhereInput, $orderby: [OrderByInput!], $search: String) { sapoLocations(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"store_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_sapoLocations($limit: Int, $offset: Int, $where: SapoLocationWhereInput, $orderby: [OrderByInput!], $search: String) { sapoLocations(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "store_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"sapoLocations": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
SapoShop
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_sapoShop($id: Int!) { sapoShop(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_sapoShop($id: Int!) { sapoShop(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"sapoShop": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[SapoShop!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
SapoShopWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_sapoShops($limit: Int, $offset: Int, $where: SapoShopWhereInput, $orderby: [OrderByInput!], $search: String) { sapoShops(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"alias": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"trade_name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_sapoShops($limit: Int, $offset: Int, $where: SapoShopWhereInput, $orderby: [OrderByInput!], $search: String) { sapoShops(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "trade_name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "alias": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"sapoShops": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
SapoSupplier
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_sapoSupplier($id: Int!) { sapoSupplier(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_sapoSupplier($id: Int!) { sapoSupplier(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"sapoSupplier": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[SapoSupplier!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
SapoSupplierWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_sapoSuppliers($limit: Int, $offset: Int, $where: SapoSupplierWhereInput, $orderby: [OrderByInput!], $search: String) { sapoSuppliers(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"store_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_sapoSuppliers($limit: Int, $offset: Int, $where: SapoSupplierWhereInput, $orderby: [OrderByInput!], $search: String) { sapoSuppliers(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "store_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"sapoSuppliers": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
SapoToShopChannel
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_sapoToShopChannel($id: Int!) { sapoToShopChannel(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_sapoToShopChannel($id: Int!) { sapoToShopChannel(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"sapoToShopChannel": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[SapoToShopChannel!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
SapoToShopChannelWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_sapoToShopChannels($limit: Int, $offset: Int, $where: SapoToShopChannelWhereInput, $orderby: [OrderByInput!], $search: String) { sapoToShopChannels(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"sapo_shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_sapoToShopChannels($limit: Int, $offset: Int, $where: SapoToShopChannelWhereInput, $orderby: [OrderByInput!], $search: String) { sapoToShopChannels(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "sapo_shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"sapoToShopChannels": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
SapoToShopLocation
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_sapoToShopLocation($id: Int!) { sapoToShopLocation(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_sapoToShopLocation($id: Int!) { sapoToShopLocation(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"sapoToShopLocation": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[SapoToShopLocation!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
SapoToShopLocationWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_sapoToShopLocations($limit: Int, $offset: Int, $where: SapoToShopLocationWhereInput, $orderby: [OrderByInput!], $search: String) { sapoToShopLocations(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"sapo_location_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_sapoToShopLocations($limit: Int, $offset: Int, $where: SapoToShopLocationWhereInput, $orderby: [OrderByInput!], $search: String) { sapoToShopLocations(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "sapo_location_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"sapoToShopLocations": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
Shop
| name | type | details |
|---|---|---|
id |
Int |
Optional
Shop ID (ignored, uses ctx.shop_id)
|
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shop($id: Int) { shop(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shop($id: Int) { shop(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shop": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopAccessToken
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopAccessToken($id: Int!) { shopAccessToken(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopAccessToken($id: Int!) { shopAccessToken(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopAccessToken": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopAccessToken!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopAccessTokenWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopAccessTokens($limit: Int, $offset: Int, $where: ShopAccessTokenWhereInput, $orderby: [OrderByInput!], $search: String) { shopAccessTokens(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"created_by_user_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopAccessTokens($limit: Int, $offset: Int, $where: ShopAccessTokenWhereInput, $orderby: [OrderByInput!], $search: String) { shopAccessTokens(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_by_user_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopAccessTokens": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopAction
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopAction($id: Int!) { shopAction(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopAction($id: Int!) { shopAction(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopAction": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopAction!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopActionWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopActions($limit: Int, $offset: Int, $where: ShopActionWhereInput, $orderby: [OrderByInput!], $search: String) { shopActions(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopActions($limit: Int, $offset: Int, $where: ShopActionWhereInput, $orderby: [OrderByInput!], $search: String) { shopActions(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopActions": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopActivity!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopActivityWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopActivities($limit: Int, $offset: Int, $where: ShopActivityWhereInput, $orderby: [OrderByInput!], $search: String) { shopActivities(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"entity": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"entity_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"is_active": {
"eq": false,
"is_null": false,
"ne": false
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopActivities($limit: Int, $offset: Int, $where: ShopActivityWhereInput, $orderby: [OrderByInput!], $search: String) { shopActivities(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "is_active": {"eq": false, "ne": false, "is_null": false}, "entity": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "entity_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopActivities": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopActivity
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopActivity($id: Int!) { shopActivity(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopActivity($id: Int!) { shopActivity(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopActivity": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopAttachment
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopAttachment($id: Int!) { shopAttachment(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopAttachment($id: Int!) { shopAttachment(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopAttachment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopAttachment!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopAttachmentWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopAttachments($limit: Int, $offset: Int, $where: ShopAttachmentWhereInput, $orderby: [OrderByInput!], $search: String) { shopAttachments(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"is_active": {
"eq": false,
"is_null": false,
"ne": false
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopAttachments($limit: Int, $offset: Int, $where: ShopAttachmentWhereInput, $orderby: [OrderByInput!], $search: String) { shopAttachments(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "is_active": {"eq": false, "ne": false, "is_null": false}}}}
HTTP 200 OK
{
"data": {
"shopAttachments": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopAttribute
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopAttribute($id: Int!) { shopAttribute(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopAttribute($id: Int!) { shopAttribute(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopAttribute": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopAttributeGroup
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopAttributeGroup($id: Int!) { shopAttributeGroup(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopAttributeGroup($id: Int!) { shopAttributeGroup(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopAttributeGroup": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopAttributeGroup!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopAttributeGroupWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopAttributeGroups($limit: Int, $offset: Int, $where: ShopAttributeGroupWhereInput, $orderby: [OrderByInput!], $search: String) { shopAttributeGroups(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopAttributeGroups($limit: Int, $offset: Int, $where: ShopAttributeGroupWhereInput, $orderby: [OrderByInput!], $search: String) { shopAttributeGroups(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopAttributeGroups": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopAttribute!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopAttributeWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopAttributes($limit: Int, $offset: Int, $where: ShopAttributeWhereInput, $orderby: [OrderByInput!], $search: String) { shopAttributes(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"group_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopAttributes($limit: Int, $offset: Int, $where: ShopAttributeWhereInput, $orderby: [OrderByInput!], $search: String) { shopAttributes(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "group_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopAttributes": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopBank
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopBank($id: Int!) { shopBank(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopBank($id: Int!) { shopBank(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopBank": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopBank!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopBankWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopBanks($limit: Int, $offset: Int, $where: ShopBankWhereInput, $orderby: [OrderByInput!], $search: String) { shopBanks(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopBanks($limit: Int, $offset: Int, $where: ShopBankWhereInput, $orderby: [OrderByInput!], $search: String) { shopBanks(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopBanks": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopBranch
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopBranch($id: Int!) { shopBranch(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopBranch($id: Int!) { shopBranch(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopBranch": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopBranch!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopBranchWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopBranches($limit: Int, $offset: Int, $where: ShopBranchWhereInput, $orderby: [OrderByInput!], $search: String) { shopBranches(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopBranches($limit: Int, $offset: Int, $where: ShopBranchWhereInput, $orderby: [OrderByInput!], $search: String) { shopBranches(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopBranches": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopBrand
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopBrand($id: Int!) { shopBrand(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopBrand($id: Int!) { shopBrand(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopBrand": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopBrand!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopBrandWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopBrands($limit: Int, $offset: Int, $where: ShopBrandWhereInput, $orderby: [OrderByInput!], $search: String) { shopBrands(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopBrands($limit: Int, $offset: Int, $where: ShopBrandWhereInput, $orderby: [OrderByInput!], $search: String) { shopBrands(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopBrands": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopCarrier
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopCarrier($id: Int!) { shopCarrier(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopCarrier($id: Int!) { shopCarrier(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopCarrier": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopCarrier!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopCarrierWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopCarriers($limit: Int, $offset: Int, $where: ShopCarrierWhereInput, $orderby: [OrderByInput!], $search: String) { shopCarriers(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopCarriers($limit: Int, $offset: Int, $where: ShopCarrierWhereInput, $orderby: [OrderByInput!], $search: String) { shopCarriers(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopCarriers": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopChannel
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopChannel($id: Int!) { shopChannel(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopChannel($id: Int!) { shopChannel(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopChannel": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopChannelProvider
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopChannelProvider($id: Int!) { shopChannelProvider(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopChannelProvider($id: Int!) { shopChannelProvider(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopChannelProvider": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopChannelProvider!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopChannelProviderWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopChannelProviders($limit: Int, $offset: Int, $where: ShopChannelProviderWhereInput, $orderby: [OrderByInput!], $search: String) { shopChannelProviders(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"is_active": {
"eq": false,
"is_null": false,
"ne": false
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopChannelProviders($limit: Int, $offset: Int, $where: ShopChannelProviderWhereInput, $orderby: [OrderByInput!], $search: String) { shopChannelProviders(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "is_active": {"eq": false, "ne": false, "is_null": false}, "channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopChannelProviders": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopChannel!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopChannelWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopChannels($limit: Int, $offset: Int, $where: ShopChannelWhereInput, $orderby: [OrderByInput!], $search: String) { shopChannels(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopChannels($limit: Int, $offset: Int, $where: ShopChannelWhereInput, $orderby: [OrderByInput!], $search: String) { shopChannels(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopChannels": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopCheckoutOrder
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopCheckoutOrder($id: Int!) { shopCheckoutOrder(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopCheckoutOrder($id: Int!) { shopCheckoutOrder(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopCheckoutOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopCheckoutOrderLine
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopCheckoutOrderLine($id: Int!) { shopCheckoutOrderLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopCheckoutOrderLine($id: Int!) { shopCheckoutOrderLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopCheckoutOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopCheckoutOrderLine!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopCheckoutOrderLineWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopCheckoutOrderLines($limit: Int, $offset: Int, $where: ShopCheckoutOrderLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopCheckoutOrderLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"checkout_order_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"gennova_uuid": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopCheckoutOrderLines($limit: Int, $offset: Int, $where: ShopCheckoutOrderLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopCheckoutOrderLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "checkout_order_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "gennova_uuid": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"shopCheckoutOrderLines": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopCheckoutOrder!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopCheckoutOrderWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopCheckoutOrders($limit: Int, $offset: Int, $where: ShopCheckoutOrderWhereInput, $orderby: [OrderByInput!], $search: String) { shopCheckoutOrders(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"cart_token": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"token": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopCheckoutOrders($limit: Int, $offset: Int, $where: ShopCheckoutOrderWhereInput, $orderby: [OrderByInput!], $search: String) { shopCheckoutOrders(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "token": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "cart_token": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"shopCheckoutOrders": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopCompany!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopCompanyWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopCompanies($limit: Int, $offset: Int, $where: ShopCompanyWhereInput, $orderby: [OrderByInput!], $search: String) { shopCompanies(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"company_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopCompanies($limit: Int, $offset: Int, $where: ShopCompanyWhereInput, $orderby: [OrderByInput!], $search: String) { shopCompanies(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "company_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopCompanies": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopCompany
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopCompany($id: Int!) { shopCompany(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopCompany($id: Int!) { shopCompany(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopCompany": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopCountry!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopCountryWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopCountries($limit: Int, $offset: Int, $where: ShopCountryWhereInput, $orderby: [OrderByInput!], $search: String) { shopCountries(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopCountries($limit: Int, $offset: Int, $where: ShopCountryWhereInput, $orderby: [OrderByInput!], $search: String) { shopCountries(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopCountries": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopCountry
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopCountry($id: Int!) { shopCountry(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopCountry($id: Int!) { shopCountry(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopCountry": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopCurrency!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopCurrencyWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopCurrencies($limit: Int, $offset: Int, $where: ShopCurrencyWhereInput, $orderby: [OrderByInput!], $search: String) { shopCurrencies(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopCurrencies($limit: Int, $offset: Int, $where: ShopCurrencyWhereInput, $orderby: [OrderByInput!], $search: String) { shopCurrencies(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopCurrencies": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopCurrency
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopCurrency($id: Int!) { shopCurrency(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopCurrency($id: Int!) { shopCurrency(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopCurrency": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopCustomer
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopCustomer($id: Int!) { shopCustomer(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopCustomer($id: Int!) { shopCustomer(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopCustomer": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopCustomerBillingAddress
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopCustomerBillingAddress($id: Int!) { shopCustomerBillingAddress(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopCustomerBillingAddress($id: Int!) { shopCustomerBillingAddress(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopCustomerBillingAddress": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopCustomerBillingAddress!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopCustomerBillingAddressWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopCustomerBillingAddresses($limit: Int, $offset: Int, $where: ShopCustomerBillingAddressWhereInput, $orderby: [OrderByInput!], $search: String) { shopCustomerBillingAddresses(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"customer_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"label": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopCustomerBillingAddresses($limit: Int, $offset: Int, $where: ShopCustomerBillingAddressWhereInput, $orderby: [OrderByInput!], $search: String) { shopCustomerBillingAddresses(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "customer_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "label": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"shopCustomerBillingAddresses": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopCustomerGroup
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopCustomerGroup($id: Int!) { shopCustomerGroup(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopCustomerGroup($id: Int!) { shopCustomerGroup(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopCustomerGroup": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopCustomerGroup!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopCustomerGroupWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopCustomerGroups($limit: Int, $offset: Int, $where: ShopCustomerGroupWhereInput, $orderby: [OrderByInput!], $search: String) { shopCustomerGroups(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopCustomerGroups($limit: Int, $offset: Int, $where: ShopCustomerGroupWhereInput, $orderby: [OrderByInput!], $search: String) { shopCustomerGroups(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopCustomerGroups": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopCustomerShippingAddress
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopCustomerShippingAddress($id: Int!) { shopCustomerShippingAddress(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopCustomerShippingAddress($id: Int!) { shopCustomerShippingAddress(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopCustomerShippingAddress": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopCustomerShippingAddress!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopCustomerShippingAddressWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopCustomerShippingAddresses($limit: Int, $offset: Int, $where: ShopCustomerShippingAddressWhereInput, $orderby: [OrderByInput!], $search: String) { shopCustomerShippingAddresses(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"customer_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopCustomerShippingAddresses($limit: Int, $offset: Int, $where: ShopCustomerShippingAddressWhereInput, $orderby: [OrderByInput!], $search: String) { shopCustomerShippingAddresses(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "customer_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopCustomerShippingAddresses": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopCustomer!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopCustomerWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopCustomers($limit: Int, $offset: Int, $where: ShopCustomerWhereInput, $orderby: [OrderByInput!], $search: String) { shopCustomers(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopCustomers($limit: Int, $offset: Int, $where: ShopCustomerWhereInput, $orderby: [OrderByInput!], $search: String) { shopCustomers(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopCustomers": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopDescriptionJson
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopDescriptionJson($id: Int!) { shopDescriptionJson(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopDescriptionJson($id: Int!) { shopDescriptionJson(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopDescriptionJson": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopDescriptionJson!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopDescriptionJsonWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopDescriptionJsons($limit: Int, $offset: Int, $where: ShopDescriptionJsonWhereInput, $orderby: [OrderByInput!], $search: String) { shopDescriptionJsons(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"entity": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"is_active": {
"eq": false,
"is_null": false,
"ne": false
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopDescriptionJsons($limit: Int, $offset: Int, $where: ShopDescriptionJsonWhereInput, $orderby: [OrderByInput!], $search: String) { shopDescriptionJsons(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "is_active": {"eq": false, "ne": false, "is_null": false}, "entity": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"shopDescriptionJsons": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopDiscountCode
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopDiscountCode($id: Int!) { shopDiscountCode(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopDiscountCode($id: Int!) { shopDiscountCode(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopDiscountCode": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopDiscountCode!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopDiscountCodeWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopDiscountCodes($limit: Int, $offset: Int, $where: ShopDiscountCodeWhereInput, $orderby: [OrderByInput!], $search: String) { shopDiscountCodes(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopDiscountCodes($limit: Int, $offset: Int, $where: ShopDiscountCodeWhereInput, $orderby: [OrderByInput!], $search: String) { shopDiscountCodes(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopDiscountCodes": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopDistrict
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopDistrict($id: Int!) { shopDistrict(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopDistrict($id: Int!) { shopDistrict(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopDistrict": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopDistrict!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopDistrictWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopDistricts($limit: Int, $offset: Int, $where: ShopDistrictWhereInput, $orderby: [OrderByInput!], $search: String) { shopDistricts(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopDistricts($limit: Int, $offset: Int, $where: ShopDistrictWhereInput, $orderby: [OrderByInput!], $search: String) { shopDistricts(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopDistricts": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopFilter
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopFilter($id: Int!) { shopFilter(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopFilter($id: Int!) { shopFilter(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopFilter": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopFilter!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopFilterWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopFilters($limit: Int, $offset: Int, $where: ShopFilterWhereInput, $orderby: [OrderByInput!], $search: String) { shopFilters(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopFilters($limit: Int, $offset: Int, $where: ShopFilterWhereInput, $orderby: [OrderByInput!], $search: String) { shopFilters(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopFilters": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopGateway
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopGateway($id: Int!) { shopGateway(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopGateway($id: Int!) { shopGateway(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopGateway": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopGateway!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopGatewayWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopGateways($limit: Int, $offset: Int, $where: ShopGatewayWhereInput, $orderby: [OrderByInput!], $search: String) { shopGateways(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopGateways($limit: Int, $offset: Int, $where: ShopGatewayWhereInput, $orderby: [OrderByInput!], $search: String) { shopGateways(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopGateways": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopInventoryAdjustment
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopInventoryAdjustment($id: Int!) { shopInventoryAdjustment(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopInventoryAdjustment($id: Int!) { shopInventoryAdjustment(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopInventoryAdjustment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopInventoryAdjustmentLine
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopInventoryAdjustmentLine($id: Int!) { shopInventoryAdjustmentLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopInventoryAdjustmentLine($id: Int!) { shopInventoryAdjustmentLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopInventoryAdjustmentLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopInventoryAdjustmentLine!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopInventoryAdjustmentLineWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopInventoryAdjustmentLines($limit: Int, $offset: Int, $where: ShopInventoryAdjustmentLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopInventoryAdjustmentLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"adjustment_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopInventoryAdjustmentLines($limit: Int, $offset: Int, $where: ShopInventoryAdjustmentLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopInventoryAdjustmentLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "adjustment_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopInventoryAdjustmentLines": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopInventoryAdjustment!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopInventoryAdjustmentWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopInventoryAdjustments($limit: Int, $offset: Int, $where: ShopInventoryAdjustmentWhereInput, $orderby: [OrderByInput!], $search: String) { shopInventoryAdjustments(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"branch_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopInventoryAdjustments($limit: Int, $offset: Int, $where: ShopInventoryAdjustmentWhereInput, $orderby: [OrderByInput!], $search: String) { shopInventoryAdjustments(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "branch_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopInventoryAdjustments": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopInventoryItem
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopInventoryItem($id: Int!) { shopInventoryItem(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopInventoryItem($id: Int!) { shopInventoryItem(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopInventoryItem": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopInventoryItemLot
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopInventoryItemLot($id: Int!) { shopInventoryItemLot(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopInventoryItemLot($id: Int!) { shopInventoryItemLot(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopInventoryItemLot": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopInventoryItemLot!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopInventoryItemLotWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopInventoryItemLots($limit: Int, $offset: Int, $where: ShopInventoryItemLotWhereInput, $orderby: [OrderByInput!], $search: String) { shopInventoryItemLots(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"inventory_item_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"lot_code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopInventoryItemLots($limit: Int, $offset: Int, $where: ShopInventoryItemLotWhereInput, $orderby: [OrderByInput!], $search: String) { shopInventoryItemLots(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "inventory_item_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "lot_code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"shopInventoryItemLots": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopInventoryItem!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopInventoryItemWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopInventoryItems($limit: Int, $offset: Int, $where: ShopInventoryItemWhereInput, $orderby: [OrderByInput!], $search: String) { shopInventoryItems(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"variant_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"ware_house_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopInventoryItems($limit: Int, $offset: Int, $where: ShopInventoryItemWhereInput, $orderby: [OrderByInput!], $search: String) { shopInventoryItems(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "variant_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "ware_house_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopInventoryItems": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopInventoryTransfer
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopInventoryTransfer($id: Int!) { shopInventoryTransfer(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopInventoryTransfer($id: Int!) { shopInventoryTransfer(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopInventoryTransfer": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopInventoryTransferLine
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopInventoryTransferLine($id: Int!) { shopInventoryTransferLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopInventoryTransferLine($id: Int!) { shopInventoryTransferLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopInventoryTransferLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopInventoryTransferLine!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopInventoryTransferLineWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopInventoryTransferLines($limit: Int, $offset: Int, $where: ShopInventoryTransferLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopInventoryTransferLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"transfer_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopInventoryTransferLines($limit: Int, $offset: Int, $where: ShopInventoryTransferLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopInventoryTransferLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "transfer_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopInventoryTransferLines": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopInventoryTransfer!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopInventoryTransferWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopInventoryTransfers($limit: Int, $offset: Int, $where: ShopInventoryTransferWhereInput, $orderby: [OrderByInput!], $search: String) { shopInventoryTransfers(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"source_branch_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopInventoryTransfers($limit: Int, $offset: Int, $where: ShopInventoryTransferWhereInput, $orderby: [OrderByInput!], $search: String) { shopInventoryTransfers(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "source_branch_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopInventoryTransfers": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopLicense
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopLicense($id: Int!) { shopLicense(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopLicense($id: Int!) { shopLicense(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopLicense": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopLicense!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopLicenseWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopLicenses($limit: Int, $offset: Int, $where: ShopLicenseWhereInput, $orderby: [OrderByInput!], $search: String) { shopLicenses(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"order_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"order_line_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopLicenses($limit: Int, $offset: Int, $where: ShopLicenseWhereInput, $orderby: [OrderByInput!], $search: String) { shopLicenses(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "order_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "order_line_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopLicenses": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopMedia
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopMedia($id: Int!) { shopMedia(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopMedia($id: Int!) { shopMedia(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopMedia": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopMediaCategory!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopMediaCategoryWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopMediaCategories($limit: Int, $offset: Int, $where: ShopMediaCategoryWhereInput, $orderby: [OrderByInput!], $search: String) { shopMediaCategories(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"category_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"is_active": {
"eq": false,
"is_null": false,
"ne": false
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopMediaCategories($limit: Int, $offset: Int, $where: ShopMediaCategoryWhereInput, $orderby: [OrderByInput!], $search: String) { shopMediaCategories(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "is_active": {"eq": false, "ne": false, "is_null": false}, "category_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopMediaCategories": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopMediaCategory
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopMediaCategory($id: Int!) { shopMediaCategory(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopMediaCategory($id: Int!) { shopMediaCategory(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopMediaCategory": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopMediaProduct
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopMediaProduct($id: Int!) { shopMediaProduct(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopMediaProduct($id: Int!) { shopMediaProduct(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopMediaProduct": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopMediaProduct!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopMediaProductWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopMediaProducts($limit: Int, $offset: Int, $where: ShopMediaProductWhereInput, $orderby: [OrderByInput!], $search: String) { shopMediaProducts(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"is_active": {
"eq": false,
"is_null": false,
"ne": false
},
"product_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopMediaProducts($limit: Int, $offset: Int, $where: ShopMediaProductWhereInput, $orderby: [OrderByInput!], $search: String) { shopMediaProducts(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "is_active": {"eq": false, "ne": false, "is_null": false}, "product_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopMediaProducts": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopMediaVariant
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopMediaVariant($id: Int!) { shopMediaVariant(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopMediaVariant($id: Int!) { shopMediaVariant(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopMediaVariant": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopMediaVariant!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopMediaVariantWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopMediaVariants($limit: Int, $offset: Int, $where: ShopMediaVariantWhereInput, $orderby: [OrderByInput!], $search: String) { shopMediaVariants(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"is_active": {
"eq": false,
"is_null": false,
"ne": false
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"variant_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopMediaVariants($limit: Int, $offset: Int, $where: ShopMediaVariantWhereInput, $orderby: [OrderByInput!], $search: String) { shopMediaVariants(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "is_active": {"eq": false, "ne": false, "is_null": false}, "variant_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopMediaVariants": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopMedia!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopMediaWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopMedias($limit: Int, $offset: Int, $where: ShopMediaWhereInput, $orderby: [OrderByInput!], $search: String) { shopMedias(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"is_active": {
"eq": false,
"is_null": false,
"ne": false
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopMedias($limit: Int, $offset: Int, $where: ShopMediaWhereInput, $orderby: [OrderByInput!], $search: String) { shopMedias(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "is_active": {"eq": false, "ne": false, "is_null": false}}}}
HTTP 200 OK
{
"data": {
"shopMedias": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopMember
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopMember($id: Int!) { shopMember(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopMember($id: Int!) { shopMember(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopMember": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopMember!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopMemberWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopMembers($limit: Int, $offset: Int, $where: ShopMemberWhereInput, $orderby: [OrderByInput!], $search: String) { shopMembers(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"user_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopMembers($limit: Int, $offset: Int, $where: ShopMemberWhereInput, $orderby: [OrderByInput!], $search: String) { shopMembers(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "user_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopMembers": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopMetaData
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopMetaData($id: Int!) { shopMetaData(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopMetaData($id: Int!) { shopMetaData(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopMetaData": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopMetaData!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopMetaDataWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopMetaDatas($limit: Int, $offset: Int, $where: ShopMetaDataWhereInput, $orderby: [OrderByInput!], $search: String) { shopMetaDatas(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"is_active": {
"eq": false,
"is_null": false,
"ne": false
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopMetaDatas($limit: Int, $offset: Int, $where: ShopMetaDataWhereInput, $orderby: [OrderByInput!], $search: String) { shopMetaDatas(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "is_active": {"eq": false, "ne": false, "is_null": false}}}}
HTTP 200 OK
{
"data": {
"shopMetaDatas": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopOrder
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopOrder($id: Int!) { shopOrder(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopOrder($id: Int!) { shopOrder(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopOrderAppliedPromotion
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopOrderAppliedPromotion($id: Int!) { shopOrderAppliedPromotion(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopOrderAppliedPromotion($id: Int!) { shopOrderAppliedPromotion(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopOrderAppliedPromotion": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopOrderFulfillment
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopOrderFulfillment($id: Int!) { shopOrderFulfillment(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopOrderFulfillment($id: Int!) { shopOrderFulfillment(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopOrderFulfillment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopOrderFulfillmentLine
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopOrderFulfillmentLine($id: Int!) { shopOrderFulfillmentLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopOrderFulfillmentLine($id: Int!) { shopOrderFulfillmentLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopOrderFulfillmentLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopOrderFulfillmentLine!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopOrderFulfillmentLineWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopOrderFulfillmentLines($limit: Int, $offset: Int, $where: ShopOrderFulfillmentLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopOrderFulfillmentLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"fulfillment_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopOrderFulfillmentLines($limit: Int, $offset: Int, $where: ShopOrderFulfillmentLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopOrderFulfillmentLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "fulfillment_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopOrderFulfillmentLines": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopOrderFulfillment!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopOrderFulfillmentWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopOrderFulfillments($limit: Int, $offset: Int, $where: ShopOrderFulfillmentWhereInput, $orderby: [OrderByInput!], $search: String) { shopOrderFulfillments(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"order_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopOrderFulfillments($limit: Int, $offset: Int, $where: ShopOrderFulfillmentWhereInput, $orderby: [OrderByInput!], $search: String) { shopOrderFulfillments(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "order_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopOrderFulfillments": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopOrderLine
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopOrderLine($id: Int!) { shopOrderLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopOrderLine($id: Int!) { shopOrderLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopOrderLine!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopOrderLineWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopOrderLines($limit: Int, $offset: Int, $where: ShopOrderLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopOrderLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"order_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"original_source": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopOrderLines($limit: Int, $offset: Int, $where: ShopOrderLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopOrderLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "order_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "original_source": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"shopOrderLines": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopOrderTransaction
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopOrderTransaction($id: Int!) { shopOrderTransaction(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopOrderTransaction($id: Int!) { shopOrderTransaction(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopOrderTransaction": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopOrderTransactionBase
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopOrderTransactionBase($id: Int!) { shopOrderTransactionBase(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopOrderTransactionBase($id: Int!) { shopOrderTransactionBase(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopOrderTransactionBase": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopOrderTransactionBase!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopOrderTransactionBaseWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopOrderTransactions($limit: Int, $offset: Int, $where: ShopOrderTransactionBaseWhereInput, $orderby: [OrderByInput!], $search: String) { shopOrderTransactions(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"direction": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopOrderTransactions($limit: Int, $offset: Int, $where: ShopOrderTransactionBaseWhereInput, $orderby: [OrderByInput!], $search: String) { shopOrderTransactions(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "direction": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopOrderTransactions": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopOrder!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopOrderWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopOrders($limit: Int, $offset: Int, $where: ShopOrderWhereInput, $orderby: [OrderByInput!], $search: String) { shopOrders(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"billing_address_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shipping_address_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopOrders($limit: Int, $offset: Int, $where: ShopOrderWhereInput, $orderby: [OrderByInput!], $search: String) { shopOrders(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shipping_address_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "billing_address_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopOrders": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPaymentMethod
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPaymentMethod($id: Int!) { shopPaymentMethod(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPaymentMethod($id: Int!) { shopPaymentMethod(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopPaymentMethod": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPaymentMethodGateway
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPaymentMethodGateway($id: Int!) { shopPaymentMethodGateway(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPaymentMethodGateway($id: Int!) { shopPaymentMethodGateway(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopPaymentMethodGateway": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopPaymentMethodGateway!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopPaymentMethodGatewayWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPaymentMethodGateways($limit: Int, $offset: Int, $where: ShopPaymentMethodGatewayWhereInput, $orderby: [OrderByInput!], $search: String) { shopPaymentMethodGateways(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"gateway_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"payment_method_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPaymentMethodGateways($limit: Int, $offset: Int, $where: ShopPaymentMethodGatewayWhereInput, $orderby: [OrderByInput!], $search: String) { shopPaymentMethodGateways(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "payment_method_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "gateway_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopPaymentMethodGateways": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopPaymentMethod!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopPaymentMethodWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPaymentMethods($limit: Int, $offset: Int, $where: ShopPaymentMethodWhereInput, $orderby: [OrderByInput!], $search: String) { shopPaymentMethods(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPaymentMethods($limit: Int, $offset: Int, $where: ShopPaymentMethodWhereInput, $orderby: [OrderByInput!], $search: String) { shopPaymentMethods(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopPaymentMethods": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPreOrder
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPreOrder($id: Int!) { shopPreOrder(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPreOrder($id: Int!) { shopPreOrder(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopPreOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPreOrderLine
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPreOrderLine($id: Int!) { shopPreOrderLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPreOrderLine($id: Int!) { shopPreOrderLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopPreOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopPreOrderLine!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopPreOrderLineWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPreOrderLines($limit: Int, $offset: Int, $where: ShopPreOrderLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopPreOrderLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"pre_order_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"promotion_ref_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPreOrderLines($limit: Int, $offset: Int, $where: ShopPreOrderLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopPreOrderLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "pre_order_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "promotion_ref_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopPreOrderLines": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopPreOrder!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopPreOrderWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPreOrders($limit: Int, $offset: Int, $where: ShopPreOrderWhereInput, $orderby: [OrderByInput!], $search: String) { shopPreOrders(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"billing_address_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shipping_address_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPreOrders($limit: Int, $offset: Int, $where: ShopPreOrderWhereInput, $orderby: [OrderByInput!], $search: String) { shopPreOrders(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shipping_address_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "billing_address_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopPreOrders": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPrePurchaseOrder
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPrePurchaseOrder($id: Int!) { shopPrePurchaseOrder(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPrePurchaseOrder($id: Int!) { shopPrePurchaseOrder(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopPrePurchaseOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPrePurchaseOrderLine
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPrePurchaseOrderLine($id: Int!) { shopPrePurchaseOrderLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPrePurchaseOrderLine($id: Int!) { shopPrePurchaseOrderLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopPrePurchaseOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopPrePurchaseOrderLine!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopPrePurchaseOrderLineWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPrePurchaseOrderLines($limit: Int, $offset: Int, $where: ShopPrePurchaseOrderLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopPrePurchaseOrderLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"gennova_uuid": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"pre_purchase_order_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPrePurchaseOrderLines($limit: Int, $offset: Int, $where: ShopPrePurchaseOrderLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopPrePurchaseOrderLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "pre_purchase_order_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "gennova_uuid": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"shopPrePurchaseOrderLines": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopPrePurchaseOrder!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopPrePurchaseOrderWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPrePurchaseOrders($limit: Int, $offset: Int, $where: ShopPrePurchaseOrderWhereInput, $orderby: [OrderByInput!], $search: String) { shopPrePurchaseOrders(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"no": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"number": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPrePurchaseOrders($limit: Int, $offset: Int, $where: ShopPrePurchaseOrderWhereInput, $orderby: [OrderByInput!], $search: String) { shopPrePurchaseOrders(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "number": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "no": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"shopPrePurchaseOrders": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPrintTemplate
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPrintTemplate($id: Int!) { shopPrintTemplate(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPrintTemplate($id: Int!) { shopPrintTemplate(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopPrintTemplate": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopPrintTemplate!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopPrintTemplateWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPrintTemplates($limit: Int, $offset: Int, $where: ShopPrintTemplateWhereInput, $orderby: [OrderByInput!], $search: String) { shopPrintTemplates(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"entity": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPrintTemplates($limit: Int, $offset: Int, $where: ShopPrintTemplateWhereInput, $orderby: [OrderByInput!], $search: String) { shopPrintTemplates(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "entity": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"shopPrintTemplates": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPrivateMetadata
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPrivateMetadata($id: Int!) { shopPrivateMetadata(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPrivateMetadata($id: Int!) { shopPrivateMetadata(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopPrivateMetadata": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopPrivateMetadata!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopPrivateMetadataWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPrivateMetadatas($limit: Int, $offset: Int, $where: ShopPrivateMetadataWhereInput, $orderby: [OrderByInput!], $search: String) { shopPrivateMetadatas(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"is_active": {
"eq": false,
"is_null": false,
"ne": false
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPrivateMetadatas($limit: Int, $offset: Int, $where: ShopPrivateMetadataWhereInput, $orderby: [OrderByInput!], $search: String) { shopPrivateMetadatas(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "is_active": {"eq": false, "ne": false, "is_null": false}}}}
HTTP 200 OK
{
"data": {
"shopPrivateMetadatas": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPrivateNote
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPrivateNote($id: Int!) { shopPrivateNote(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPrivateNote($id: Int!) { shopPrivateNote(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopPrivateNote": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopPrivateNote!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopPrivateNoteWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPrivateNotes($limit: Int, $offset: Int, $where: ShopPrivateNoteWhereInput, $orderby: [OrderByInput!], $search: String) { shopPrivateNotes(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"entity": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"is_active": {
"eq": false,
"is_null": false,
"ne": false
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPrivateNotes($limit: Int, $offset: Int, $where: ShopPrivateNoteWhereInput, $orderby: [OrderByInput!], $search: String) { shopPrivateNotes(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "is_active": {"eq": false, "ne": false, "is_null": false}, "entity": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"shopPrivateNotes": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopProduct
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopProduct($id: Int!) { shopProduct(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopProduct($id: Int!) { shopProduct(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopProduct": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopProductCategory!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopProductCategoryWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopProductCategories($limit: Int, $offset: Int, $where: ShopProductCategoryWhereInput, $orderby: [OrderByInput!], $search: String) { shopProductCategories(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopProductCategories($limit: Int, $offset: Int, $where: ShopProductCategoryWhereInput, $orderby: [OrderByInput!], $search: String) { shopProductCategories(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopProductCategories": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopProductCategory
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopProductCategory($id: Int!) { shopProductCategory(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopProductCategory($id: Int!) { shopProductCategory(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopProductCategory": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopProductCategoryChannel
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopProductCategoryChannel($id: Int!) { shopProductCategoryChannel(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopProductCategoryChannel($id: Int!) { shopProductCategoryChannel(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopProductCategoryChannel": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopProductCategoryChannel!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopProductCategoryChannelWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopProductCategoryChannels($limit: Int, $offset: Int, $where: ShopProductCategoryChannelWhereInput, $orderby: [OrderByInput!], $search: String) { shopProductCategoryChannels(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"category_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopProductCategoryChannels($limit: Int, $offset: Int, $where: ShopProductCategoryChannelWhereInput, $orderby: [OrderByInput!], $search: String) { shopProductCategoryChannels(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "category_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopProductCategoryChannels": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopProductChannel
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopProductChannel($id: Int!) { shopProductChannel(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopProductChannel($id: Int!) { shopProductChannel(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopProductChannel": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopProductChannel!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopProductChannelWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopProductChannels($limit: Int, $offset: Int, $where: ShopProductChannelWhereInput, $orderby: [OrderByInput!], $search: String) { shopProductChannels(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"product_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopProductChannels($limit: Int, $offset: Int, $where: ShopProductChannelWhereInput, $orderby: [OrderByInput!], $search: String) { shopProductChannels(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "product_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopProductChannels": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopProductItem
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopProductItem($id: Int!) { shopProductItem(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopProductItem($id: Int!) { shopProductItem(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopProductItem": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopProductItem!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopProductItemWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopProductItems($limit: Int, $offset: Int, $where: ShopProductItemWhereInput, $orderby: [OrderByInput!], $search: String) { shopProductItems(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"is_active": {
"eq": false,
"is_null": false,
"ne": false
},
"product_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopProductItems($limit: Int, $offset: Int, $where: ShopProductItemWhereInput, $orderby: [OrderByInput!], $search: String) { shopProductItems(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "is_active": {"eq": false, "ne": false, "is_null": false}, "product_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopProductItems": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopProductTranslation
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopProductTranslation($id: Int!) { shopProductTranslation(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopProductTranslation($id: Int!) { shopProductTranslation(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopProductTranslation": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopProductTranslation!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopProductTranslationWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopProductTranslations($limit: Int, $offset: Int, $where: ShopProductTranslationWhereInput, $orderby: [OrderByInput!], $search: String) { shopProductTranslations(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"product_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopProductTranslations($limit: Int, $offset: Int, $where: ShopProductTranslationWhereInput, $orderby: [OrderByInput!], $search: String) { shopProductTranslations(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "product_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopProductTranslations": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopProduct!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopProductWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopProducts($limit: Int, $offset: Int, $where: ShopProductWhereInput, $orderby: [OrderByInput!], $search: String) { shopProducts(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"is_active": {
"eq": false,
"is_null": false,
"ne": false
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopProducts($limit: Int, $offset: Int, $where: ShopProductWhereInput, $orderby: [OrderByInput!], $search: String) { shopProducts(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "is_active": {"eq": false, "ne": false, "is_null": false}}}}
HTTP 200 OK
{
"data": {
"shopProducts": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPromotion
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPromotion($id: Int!) { shopPromotion(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPromotion($id: Int!) { shopPromotion(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopPromotion": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopPromotion!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopPromotionWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPromotions($limit: Int, $offset: Int, $where: ShopPromotionWhereInput, $orderby: [OrderByInput!], $search: String) { shopPromotions(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"title": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPromotions($limit: Int, $offset: Int, $where: ShopPromotionWhereInput, $orderby: [OrderByInput!], $search: String) { shopPromotions(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "title": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"shopPromotions": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopProvider
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopProvider($id: Int!) { shopProvider(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopProvider($id: Int!) { shopProvider(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopProvider": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopProvider!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopProviderWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopProviders($limit: Int, $offset: Int, $where: ShopProviderWhereInput, $orderby: [OrderByInput!], $search: String) { shopProviders(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"provider_code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"provider_name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopProviders($limit: Int, $offset: Int, $where: ShopProviderWhereInput, $orderby: [OrderByInput!], $search: String) { shopProviders(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "provider_code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "provider_name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"shopProviders": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopProvince
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopProvince($id: Int!) { shopProvince(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopProvince($id: Int!) { shopProvince(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopProvince": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopProvince!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopProvinceWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopProvinces($limit: Int, $offset: Int, $where: ShopProvinceWhereInput, $orderby: [OrderByInput!], $search: String) { shopProvinces(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopProvinces($limit: Int, $offset: Int, $where: ShopProvinceWhereInput, $orderby: [OrderByInput!], $search: String) { shopProvinces(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopProvinces": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPurchaseOrder
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPurchaseOrder($id: Int!) { shopPurchaseOrder(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPurchaseOrder($id: Int!) { shopPurchaseOrder(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopPurchaseOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPurchaseOrderFulfillment
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPurchaseOrderFulfillment($id: Int!) { shopPurchaseOrderFulfillment(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPurchaseOrderFulfillment($id: Int!) { shopPurchaseOrderFulfillment(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopPurchaseOrderFulfillment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPurchaseOrderFulfillmentLine
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPurchaseOrderFulfillmentLine($id: Int!) { shopPurchaseOrderFulfillmentLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPurchaseOrderFulfillmentLine($id: Int!) { shopPurchaseOrderFulfillmentLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopPurchaseOrderFulfillmentLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopPurchaseOrderFulfillmentLine!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopPurchaseOrderFulfillmentLineWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPurchaseOrderFulfillmentLines($limit: Int, $offset: Int, $where: ShopPurchaseOrderFulfillmentLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopPurchaseOrderFulfillmentLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"fulfillment_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPurchaseOrderFulfillmentLines($limit: Int, $offset: Int, $where: ShopPurchaseOrderFulfillmentLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopPurchaseOrderFulfillmentLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "fulfillment_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopPurchaseOrderFulfillmentLines": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopPurchaseOrderFulfillment!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopPurchaseOrderFulfillmentWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPurchaseOrderFulfillments($limit: Int, $offset: Int, $where: ShopPurchaseOrderFulfillmentWhereInput, $orderby: [OrderByInput!], $search: String) { shopPurchaseOrderFulfillments(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"purchase_order_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPurchaseOrderFulfillments($limit: Int, $offset: Int, $where: ShopPurchaseOrderFulfillmentWhereInput, $orderby: [OrderByInput!], $search: String) { shopPurchaseOrderFulfillments(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "purchase_order_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopPurchaseOrderFulfillments": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPurchaseOrderLine
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPurchaseOrderLine($id: Int!) { shopPurchaseOrderLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPurchaseOrderLine($id: Int!) { shopPurchaseOrderLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopPurchaseOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopPurchaseOrderLine!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopPurchaseOrderLineWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPurchaseOrderLines($limit: Int, $offset: Int, $where: ShopPurchaseOrderLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopPurchaseOrderLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"purchase_order_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"quantity_returned": {
"eq": 1.0,
"gt": 1.0,
"gte": 1.0,
"lt": 1.0,
"lte": 1.0,
"ne": 1.0
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPurchaseOrderLines($limit: Int, $offset: Int, $where: ShopPurchaseOrderLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopPurchaseOrderLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "purchase_order_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "quantity_returned": {"eq": 1.0, "ne": 1.0, "gt": 1.0, "gte": 1.0, "lt": 1.0, "lte": 1.0}}}}
HTTP 200 OK
{
"data": {
"shopPurchaseOrderLines": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPurchaseOrderTransaction
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPurchaseOrderTransaction($id: Int!) { shopPurchaseOrderTransaction(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPurchaseOrderTransaction($id: Int!) { shopPurchaseOrderTransaction(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopPurchaseOrderTransaction": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopPurchaseOrderTransaction!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopPurchaseOrderTransactionWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPurchaseOrderTransactions($limit: Int, $offset: Int, $where: ShopPurchaseOrderTransactionWhereInput, $orderby: [OrderByInput!], $search: String) { shopPurchaseOrderTransactions(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"direction": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"purchase_order_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPurchaseOrderTransactions($limit: Int, $offset: Int, $where: ShopPurchaseOrderTransactionWhereInput, $orderby: [OrderByInput!], $search: String) { shopPurchaseOrderTransactions(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "direction": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "purchase_order_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopPurchaseOrderTransactions": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopPurchaseOrder!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopPurchaseOrderWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPurchaseOrders($limit: Int, $offset: Int, $where: ShopPurchaseOrderWhereInput, $orderby: [OrderByInput!], $search: String) { shopPurchaseOrders(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"number": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"pre_purchase_order_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPurchaseOrders($limit: Int, $offset: Int, $where: ShopPurchaseOrderWhereInput, $orderby: [OrderByInput!], $search: String) { shopPurchaseOrders(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "pre_purchase_order_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "number": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopPurchaseOrders": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPurchaseReturnOrder
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPurchaseReturnOrder($id: Int!) { shopPurchaseReturnOrder(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPurchaseReturnOrder($id: Int!) { shopPurchaseReturnOrder(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopPurchaseReturnOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPurchaseReturnOrderFulfillment
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPurchaseReturnOrderFulfillment($id: Int!) { shopPurchaseReturnOrderFulfillment(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPurchaseReturnOrderFulfillment($id: Int!) { shopPurchaseReturnOrderFulfillment(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopPurchaseReturnOrderFulfillment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPurchaseReturnOrderFulfillmentLine
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPurchaseReturnOrderFulfillmentLine($id: Int!) { shopPurchaseReturnOrderFulfillmentLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPurchaseReturnOrderFulfillmentLine($id: Int!) { shopPurchaseReturnOrderFulfillmentLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopPurchaseReturnOrderFulfillmentLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopPurchaseReturnOrderFulfillmentLine!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopPurchaseReturnOrderFulfillmentLineWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPurchaseReturnOrderFulfillmentLines($limit: Int, $offset: Int, $where: ShopPurchaseReturnOrderFulfillmentLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopPurchaseReturnOrderFulfillmentLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"fulfillment_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPurchaseReturnOrderFulfillmentLines($limit: Int, $offset: Int, $where: ShopPurchaseReturnOrderFulfillmentLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopPurchaseReturnOrderFulfillmentLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "fulfillment_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopPurchaseReturnOrderFulfillmentLines": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopPurchaseReturnOrderFulfillment!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopPurchaseReturnOrderFulfillmentWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPurchaseReturnOrderFulfillments($limit: Int, $offset: Int, $where: ShopPurchaseReturnOrderFulfillmentWhereInput, $orderby: [OrderByInput!], $search: String) { shopPurchaseReturnOrderFulfillments(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"purchase_return_order_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPurchaseReturnOrderFulfillments($limit: Int, $offset: Int, $where: ShopPurchaseReturnOrderFulfillmentWhereInput, $orderby: [OrderByInput!], $search: String) { shopPurchaseReturnOrderFulfillments(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "purchase_return_order_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopPurchaseReturnOrderFulfillments": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPurchaseReturnOrderLine
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPurchaseReturnOrderLine($id: Int!) { shopPurchaseReturnOrderLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPurchaseReturnOrderLine($id: Int!) { shopPurchaseReturnOrderLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopPurchaseReturnOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopPurchaseReturnOrderLine!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopPurchaseReturnOrderLineWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPurchaseReturnOrderLines($limit: Int, $offset: Int, $where: ShopPurchaseReturnOrderLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopPurchaseReturnOrderLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"purchase_return_order_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPurchaseReturnOrderLines($limit: Int, $offset: Int, $where: ShopPurchaseReturnOrderLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopPurchaseReturnOrderLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "purchase_return_order_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopPurchaseReturnOrderLines": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPurchaseReturnOrderTransaction
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPurchaseReturnOrderTransaction($id: Int!) { shopPurchaseReturnOrderTransaction(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPurchaseReturnOrderTransaction($id: Int!) { shopPurchaseReturnOrderTransaction(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopPurchaseReturnOrderTransaction": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopPurchaseReturnOrderTransaction!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopPurchaseReturnOrderTransactionWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPurchaseReturnOrderTransactions($limit: Int, $offset: Int, $where: ShopPurchaseReturnOrderTransactionWhereInput, $orderby: [OrderByInput!], $search: String) { shopPurchaseReturnOrderTransactions(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"direction": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"purchase_return_order_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPurchaseReturnOrderTransactions($limit: Int, $offset: Int, $where: ShopPurchaseReturnOrderTransactionWhereInput, $orderby: [OrderByInput!], $search: String) { shopPurchaseReturnOrderTransactions(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "direction": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "purchase_return_order_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopPurchaseReturnOrderTransactions": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopPurchaseReturnOrder!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopPurchaseReturnOrderWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopPurchaseReturnOrders($limit: Int, $offset: Int, $where: ShopPurchaseReturnOrderWhereInput, $orderby: [OrderByInput!], $search: String) { shopPurchaseReturnOrders(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"number": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"purchase_order_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopPurchaseReturnOrders($limit: Int, $offset: Int, $where: ShopPurchaseReturnOrderWhereInput, $orderby: [OrderByInput!], $search: String) { shopPurchaseReturnOrders(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "purchase_order_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "number": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopPurchaseReturnOrders": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ReportQueryResult
| name | type | details |
|---|---|---|
input |
ReportQueryInput! |
Required
Tham số compute báo cáo đồng bộ
|
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopReportQuery($input: ReportQueryInput!) { shopReportQuery(input: $input) { id } }
{
"input": {
"entity": "string",
"groupby": "string",
"metrics": [
"string"
],
"period_from": "string",
"period_to": "string",
"period_type": "string"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopReportQuery($input: ReportQueryInput!) { shopReportQuery(input: $input) { id } }", "variables": {"input": {"entity": "string", "period_type": "string", "period_from": "string", "period_to": "string", "metrics": ["string"], "groupby": "string"}}}
HTTP 200 OK
{
"data": {
"shopReportQuery": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopReportTemplate
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopReportTemplate($id: Int!) { shopReportTemplate(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopReportTemplate($id: Int!) { shopReportTemplate(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopReportTemplate": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopReportTemplate!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopReportTemplateWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopReportTemplates($limit: Int, $offset: Int, $where: ShopReportTemplateWhereInput, $orderby: [OrderByInput!], $search: String) { shopReportTemplates(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopReportTemplates($limit: Int, $offset: Int, $where: ShopReportTemplateWhereInput, $orderby: [OrderByInput!], $search: String) { shopReportTemplates(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopReportTemplates": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopReturnOrder
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopReturnOrder($id: Int!) { shopReturnOrder(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopReturnOrder($id: Int!) { shopReturnOrder(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopReturnOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopReturnOrderFulfillment
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopReturnOrderFulfillment($id: Int!) { shopReturnOrderFulfillment(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopReturnOrderFulfillment($id: Int!) { shopReturnOrderFulfillment(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopReturnOrderFulfillment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopReturnOrderFulfillmentLine
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopReturnOrderFulfillmentLine($id: Int!) { shopReturnOrderFulfillmentLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopReturnOrderFulfillmentLine($id: Int!) { shopReturnOrderFulfillmentLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopReturnOrderFulfillmentLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopReturnOrderFulfillmentLine!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopReturnOrderFulfillmentLineWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopReturnOrderFulfillmentLines($limit: Int, $offset: Int, $where: ShopReturnOrderFulfillmentLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopReturnOrderFulfillmentLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"fulfillment_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopReturnOrderFulfillmentLines($limit: Int, $offset: Int, $where: ShopReturnOrderFulfillmentLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopReturnOrderFulfillmentLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "fulfillment_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopReturnOrderFulfillmentLines": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopReturnOrderFulfillment!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopReturnOrderFulfillmentWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopReturnOrderFulfillments($limit: Int, $offset: Int, $where: ShopReturnOrderFulfillmentWhereInput, $orderby: [OrderByInput!], $search: String) { shopReturnOrderFulfillments(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"return_order_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopReturnOrderFulfillments($limit: Int, $offset: Int, $where: ShopReturnOrderFulfillmentWhereInput, $orderby: [OrderByInput!], $search: String) { shopReturnOrderFulfillments(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "return_order_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopReturnOrderFulfillments": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopReturnOrderLine
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopReturnOrderLine($id: Int!) { shopReturnOrderLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopReturnOrderLine($id: Int!) { shopReturnOrderLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopReturnOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopReturnOrderLine!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopReturnOrderLineWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopReturnOrderLines($limit: Int, $offset: Int, $where: ShopReturnOrderLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopReturnOrderLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"return_order_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopReturnOrderLines($limit: Int, $offset: Int, $where: ShopReturnOrderLineWhereInput, $orderby: [OrderByInput!], $search: String) { shopReturnOrderLines(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "return_order_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopReturnOrderLines": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopReturnOrderTransaction
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopReturnOrderTransaction($id: Int!) { shopReturnOrderTransaction(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopReturnOrderTransaction($id: Int!) { shopReturnOrderTransaction(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopReturnOrderTransaction": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopReturnOrderTransaction!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopReturnOrderTransactionWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopReturnOrderTransactions($limit: Int, $offset: Int, $where: ShopReturnOrderTransactionWhereInput, $orderby: [OrderByInput!], $search: String) { shopReturnOrderTransactions(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"direction": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopReturnOrderTransactions($limit: Int, $offset: Int, $where: ShopReturnOrderTransactionWhereInput, $orderby: [OrderByInput!], $search: String) { shopReturnOrderTransactions(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "direction": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopReturnOrderTransactions": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopReturnOrder!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopReturnOrderWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopReturnOrders($limit: Int, $offset: Int, $where: ShopReturnOrderWhereInput, $orderby: [OrderByInput!], $search: String) { shopReturnOrders(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"order_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shipping_address_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopReturnOrders($limit: Int, $offset: Int, $where: ShopReturnOrderWhereInput, $orderby: [OrderByInput!], $search: String) { shopReturnOrders(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "order_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shipping_address_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopReturnOrders": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopScope
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopScope($id: Int!) { shopScope(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopScope($id: Int!) { shopScope(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopScope": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopScope!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopScopeWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopScopes($limit: Int, $offset: Int, $where: ShopScopeWhereInput, $orderby: [OrderByInput!], $search: String) { shopScopes(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"title": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopScopes($limit: Int, $offset: Int, $where: ShopScopeWhereInput, $orderby: [OrderByInput!], $search: String) { shopScopes(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "title": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"shopScopes": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopSettings
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopSetting($id: Int!) { shopSetting(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopSetting($id: Int!) { shopSetting(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopSetting": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopSettings
No parameters
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopSettings { shopSettings { id } }
{}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopSettings { shopSettings { id } }", "variables": {}}
HTTP 200 OK
{
"data": {
"shopSettings": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopSetupStatus
No parameters
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopSetupStatus { shopSetupStatus { id } }
{}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopSetupStatus { shopSetupStatus { id } }", "variables": {}}
HTTP 200 OK
{
"data": {
"shopSetupStatus": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopSmartDiscountCode!]!
| name | type | details |
|---|---|---|
pre_order_id |
Int! |
Required
ID của pre-order cần gợi ý mã giảm giá
|
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopSmartDiscountCodes($pre_order_id: Int!) { shopSmartDiscountCodes(pre_order_id: $pre_order_id) { id } }
{
"pre_order_id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopSmartDiscountCodes($pre_order_id: Int!) { shopSmartDiscountCodes(pre_order_id: $pre_order_id) { id } }", "variables": {"pre_order_id": 1}}
HTTP 200 OK
{
"data": {
"shopSmartDiscountCodes": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopSmartPromotion!]!
| name | type | details |
|---|---|---|
pre_order_id |
Int! |
Required
ID của pre-order cần gợi ý khuyến mãi
|
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopSmartPromotions($pre_order_id: Int!) { shopSmartPromotions(pre_order_id: $pre_order_id) { id } }
{
"pre_order_id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopSmartPromotions($pre_order_id: Int!) { shopSmartPromotions(pre_order_id: $pre_order_id) { id } }", "variables": {"pre_order_id": 1}}
HTTP 200 OK
{
"data": {
"shopSmartPromotions": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopSource
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopSource($id: Int!) { shopSource(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopSource($id: Int!) { shopSource(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopSource": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopSource!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopSourceWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopSources($limit: Int, $offset: Int, $where: ShopSourceWhereInput, $orderby: [OrderByInput!], $search: String) { shopSources(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopSources($limit: Int, $offset: Int, $where: ShopSourceWhereInput, $orderby: [OrderByInput!], $search: String) { shopSources(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopSources": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopSupplier
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopSupplier($id: Int!) { shopSupplier(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopSupplier($id: Int!) { shopSupplier(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopSupplier": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopSupplier!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopSupplierWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopSuppliers($limit: Int, $offset: Int, $where: ShopSupplierWhereInput, $orderby: [OrderByInput!], $search: String) { shopSuppliers(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopSuppliers($limit: Int, $offset: Int, $where: ShopSupplierWhereInput, $orderby: [OrderByInput!], $search: String) { shopSuppliers(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopSuppliers": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopTag
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopTag($id: Int!) { shopTag(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopTag($id: Int!) { shopTag(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopTag": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopTag!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopTagWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopTags($limit: Int, $offset: Int, $where: ShopTagWhereInput, $orderby: [OrderByInput!], $search: String) { shopTags(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"entity": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"entity_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopTags($limit: Int, $offset: Int, $where: ShopTagWhereInput, $orderby: [OrderByInput!], $search: String) { shopTags(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "entity": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "entity_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopTags": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopTask
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopTask($id: Int!) { shopTask(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopTask($id: Int!) { shopTask(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopTask": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopTaskLog
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopTaskLog($id: Int!) { shopTaskLog(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopTaskLog($id: Int!) { shopTaskLog(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopTaskLog": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopTaskLog!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopTaskLogWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopTaskLogs($limit: Int, $offset: Int, $where: ShopTaskLogWhereInput, $orderby: [OrderByInput!], $search: String) { shopTaskLogs(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_task_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"ts": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopTaskLogs($limit: Int, $offset: Int, $where: ShopTaskLogWhereInput, $orderby: [OrderByInput!], $search: String) { shopTaskLogs(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_task_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "ts": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}}}}
HTTP 200 OK
{
"data": {
"shopTaskLogs": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopTask!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopTaskWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopTasks($limit: Int, $offset: Int, $where: ShopTaskWhereInput, $orderby: [OrderByInput!], $search: String) { shopTasks(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"task_id": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopTasks($limit: Int, $offset: Int, $where: ShopTaskWhereInput, $orderby: [OrderByInput!], $search: String) { shopTasks(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "task_id": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"shopTasks": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopTax
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopTax($id: Int!) { shopTax(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopTax($id: Int!) { shopTax(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopTax": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopTax!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopTaxWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopTaxes($limit: Int, $offset: Int, $where: ShopTaxWhereInput, $orderby: [OrderByInput!], $search: String) { shopTaxes(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"is_active": {
"eq": false,
"is_null": false,
"ne": false
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopTaxes($limit: Int, $offset: Int, $where: ShopTaxWhereInput, $orderby: [OrderByInput!], $search: String) { shopTaxes(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "is_active": {"eq": false, "ne": false, "is_null": false}}}}
HTTP 200 OK
{
"data": {
"shopTaxes": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopToAmisBranch
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToAmisBranch($id: Int!) { shopToAmisBranch(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToAmisBranch($id: Int!) { shopToAmisBranch(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopToAmisBranch": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopToAmisBranch!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopToAmisBranchWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToAmisBranches($limit: Int, $offset: Int, $where: ShopToAmisBranchWhereInput, $orderby: [OrderByInput!], $search: String) { shopToAmisBranches(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToAmisBranches($limit: Int, $offset: Int, $where: ShopToAmisBranchWhereInput, $orderby: [OrderByInput!], $search: String) { shopToAmisBranches(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopToAmisBranches": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopToAmisCarrier
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToAmisCarrier($id: Int!) { shopToAmisCarrier(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToAmisCarrier($id: Int!) { shopToAmisCarrier(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopToAmisCarrier": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopToAmisCarrier!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopToAmisCarrierWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToAmisCarriers($limit: Int, $offset: Int, $where: ShopToAmisCarrierWhereInput, $orderby: [OrderByInput!], $search: String) { shopToAmisCarriers(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToAmisCarriers($limit: Int, $offset: Int, $where: ShopToAmisCarrierWhereInput, $orderby: [OrderByInput!], $search: String) { shopToAmisCarriers(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopToAmisCarriers": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopToAmisChannel
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToAmisChannel($id: Int!) { shopToAmisChannel(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToAmisChannel($id: Int!) { shopToAmisChannel(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopToAmisChannel": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopToAmisChannel!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopToAmisChannelWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToAmisChannels($limit: Int, $offset: Int, $where: ShopToAmisChannelWhereInput, $orderby: [OrderByInput!], $search: String) { shopToAmisChannels(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToAmisChannels($limit: Int, $offset: Int, $where: ShopToAmisChannelWhereInput, $orderby: [OrderByInput!], $search: String) { shopToAmisChannels(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopToAmisChannels": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopToAmisGateway
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToAmisGateway($id: Int!) { shopToAmisGateway(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToAmisGateway($id: Int!) { shopToAmisGateway(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopToAmisGateway": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopToAmisGateway!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopToAmisGatewayWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToAmisGateways($limit: Int, $offset: Int, $where: ShopToAmisGatewayWhereInput, $orderby: [OrderByInput!], $search: String) { shopToAmisGateways(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToAmisGateways($limit: Int, $offset: Int, $where: ShopToAmisGatewayWhereInput, $orderby: [OrderByInput!], $search: String) { shopToAmisGateways(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopToAmisGateways": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopToAmisPayload
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToAmisPayload($id: Int!) { shopToAmisPayload(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToAmisPayload($id: Int!) { shopToAmisPayload(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopToAmisPayload": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopToAmisPayload!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopToAmisPayloadWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToAmisPayloads($limit: Int, $offset: Int, $where: ShopToAmisPayloadWhereInput, $orderby: [OrderByInput!], $search: String) { shopToAmisPayloads(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"entity_type": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"source_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToAmisPayloads($limit: Int, $offset: Int, $where: ShopToAmisPayloadWhereInput, $orderby: [OrderByInput!], $search: String) { shopToAmisPayloads(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "entity_type": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "source_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopToAmisPayloads": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopToAmisPaymentMethod
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToAmisPaymentMethod($id: Int!) { shopToAmisPaymentMethod(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToAmisPaymentMethod($id: Int!) { shopToAmisPaymentMethod(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopToAmisPaymentMethod": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopToAmisPaymentMethod!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopToAmisPaymentMethodWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToAmisPaymentMethods($limit: Int, $offset: Int, $where: ShopToAmisPaymentMethodWhereInput, $orderby: [OrderByInput!], $search: String) { shopToAmisPaymentMethods(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToAmisPaymentMethods($limit: Int, $offset: Int, $where: ShopToAmisPaymentMethodWhereInput, $orderby: [OrderByInput!], $search: String) { shopToAmisPaymentMethods(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopToAmisPaymentMethods": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopToAmisSource
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToAmisSource($id: Int!) { shopToAmisSource(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToAmisSource($id: Int!) { shopToAmisSource(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopToAmisSource": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopToAmisSource!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopToAmisSourceWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToAmisSources($limit: Int, $offset: Int, $where: ShopToAmisSourceWhereInput, $orderby: [OrderByInput!], $search: String) { shopToAmisSources(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToAmisSources($limit: Int, $offset: Int, $where: ShopToAmisSourceWhereInput, $orderby: [OrderByInput!], $search: String) { shopToAmisSources(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopToAmisSources": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopToAmisWarehouse
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToAmisWarehouse($id: Int!) { shopToAmisWarehouse(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToAmisWarehouse($id: Int!) { shopToAmisWarehouse(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopToAmisWarehouse": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopToAmisWarehouse!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopToAmisWarehouseWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToAmisWarehouses($limit: Int, $offset: Int, $where: ShopToAmisWarehouseWhereInput, $orderby: [OrderByInput!], $search: String) { shopToAmisWarehouses(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToAmisWarehouses($limit: Int, $offset: Int, $where: ShopToAmisWarehouseWhereInput, $orderby: [OrderByInput!], $search: String) { shopToAmisWarehouses(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopToAmisWarehouses": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopToMeinvoiceBranch
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToMeinvoiceBranch($id: Int!) { shopToMeinvoiceBranch(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToMeinvoiceBranch($id: Int!) { shopToMeinvoiceBranch(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopToMeinvoiceBranch": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopToMeinvoiceBranch!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopToMeinvoiceBranchWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToMeinvoiceBranches($limit: Int, $offset: Int, $where: ShopToMeinvoiceBranchWhereInput, $orderby: [OrderByInput!], $search: String) { shopToMeinvoiceBranches(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToMeinvoiceBranches($limit: Int, $offset: Int, $where: ShopToMeinvoiceBranchWhereInput, $orderby: [OrderByInput!], $search: String) { shopToMeinvoiceBranches(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopToMeinvoiceBranches": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopToMeinvoiceCarrier
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToMeinvoiceCarrier($id: Int!) { shopToMeinvoiceCarrier(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToMeinvoiceCarrier($id: Int!) { shopToMeinvoiceCarrier(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopToMeinvoiceCarrier": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopToMeinvoiceCarrier!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopToMeinvoiceCarrierWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToMeinvoiceCarriers($limit: Int, $offset: Int, $where: ShopToMeinvoiceCarrierWhereInput, $orderby: [OrderByInput!], $search: String) { shopToMeinvoiceCarriers(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToMeinvoiceCarriers($limit: Int, $offset: Int, $where: ShopToMeinvoiceCarrierWhereInput, $orderby: [OrderByInput!], $search: String) { shopToMeinvoiceCarriers(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopToMeinvoiceCarriers": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopToMeinvoiceChannel
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToMeinvoiceChannel($id: Int!) { shopToMeinvoiceChannel(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToMeinvoiceChannel($id: Int!) { shopToMeinvoiceChannel(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopToMeinvoiceChannel": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopToMeinvoiceChannel!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopToMeinvoiceChannelWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToMeinvoiceChannels($limit: Int, $offset: Int, $where: ShopToMeinvoiceChannelWhereInput, $orderby: [OrderByInput!], $search: String) { shopToMeinvoiceChannels(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToMeinvoiceChannels($limit: Int, $offset: Int, $where: ShopToMeinvoiceChannelWhereInput, $orderby: [OrderByInput!], $search: String) { shopToMeinvoiceChannels(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopToMeinvoiceChannels": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopToMeinvoiceGateway
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToMeinvoiceGateway($id: Int!) { shopToMeinvoiceGateway(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToMeinvoiceGateway($id: Int!) { shopToMeinvoiceGateway(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopToMeinvoiceGateway": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopToMeinvoiceGateway!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopToMeinvoiceGatewayWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToMeinvoiceGateways($limit: Int, $offset: Int, $where: ShopToMeinvoiceGatewayWhereInput, $orderby: [OrderByInput!], $search: String) { shopToMeinvoiceGateways(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToMeinvoiceGateways($limit: Int, $offset: Int, $where: ShopToMeinvoiceGatewayWhereInput, $orderby: [OrderByInput!], $search: String) { shopToMeinvoiceGateways(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopToMeinvoiceGateways": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopToMeinvoicePayload
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToMeinvoicePayload($id: Int!) { shopToMeinvoicePayload(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToMeinvoicePayload($id: Int!) { shopToMeinvoicePayload(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopToMeinvoicePayload": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopToMeinvoicePayload!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopToMeinvoicePayloadWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToMeinvoicePayloads($limit: Int, $offset: Int, $where: ShopToMeinvoicePayloadWhereInput, $orderby: [OrderByInput!], $search: String) { shopToMeinvoicePayloads(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"entity_type": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_channel_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToMeinvoicePayloads($limit: Int, $offset: Int, $where: ShopToMeinvoicePayloadWhereInput, $orderby: [OrderByInput!], $search: String) { shopToMeinvoicePayloads(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "shop_channel_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "entity_type": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"shopToMeinvoicePayloads": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopToMeinvoicePaymentMethod
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToMeinvoicePaymentMethod($id: Int!) { shopToMeinvoicePaymentMethod(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToMeinvoicePaymentMethod($id: Int!) { shopToMeinvoicePaymentMethod(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopToMeinvoicePaymentMethod": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopToMeinvoicePaymentMethod!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopToMeinvoicePaymentMethodWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToMeinvoicePaymentMethods($limit: Int, $offset: Int, $where: ShopToMeinvoicePaymentMethodWhereInput, $orderby: [OrderByInput!], $search: String) { shopToMeinvoicePaymentMethods(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToMeinvoicePaymentMethods($limit: Int, $offset: Int, $where: ShopToMeinvoicePaymentMethodWhereInput, $orderby: [OrderByInput!], $search: String) { shopToMeinvoicePaymentMethods(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopToMeinvoicePaymentMethods": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopToMeinvoiceSource
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToMeinvoiceSource($id: Int!) { shopToMeinvoiceSource(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToMeinvoiceSource($id: Int!) { shopToMeinvoiceSource(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopToMeinvoiceSource": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopToMeinvoiceSource!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopToMeinvoiceSourceWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToMeinvoiceSources($limit: Int, $offset: Int, $where: ShopToMeinvoiceSourceWhereInput, $orderby: [OrderByInput!], $search: String) { shopToMeinvoiceSources(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToMeinvoiceSources($limit: Int, $offset: Int, $where: ShopToMeinvoiceSourceWhereInput, $orderby: [OrderByInput!], $search: String) { shopToMeinvoiceSources(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopToMeinvoiceSources": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopToMeinvoiceWarehouse
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToMeinvoiceWarehouse($id: Int!) { shopToMeinvoiceWarehouse(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToMeinvoiceWarehouse($id: Int!) { shopToMeinvoiceWarehouse(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopToMeinvoiceWarehouse": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopToMeinvoiceWarehouse!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopToMeinvoiceWarehouseWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopToMeinvoiceWarehouses($limit: Int, $offset: Int, $where: ShopToMeinvoiceWarehouseWhereInput, $orderby: [OrderByInput!], $search: String) { shopToMeinvoiceWarehouses(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopToMeinvoiceWarehouses($limit: Int, $offset: Int, $where: ShopToMeinvoiceWarehouseWhereInput, $orderby: [OrderByInput!], $search: String) { shopToMeinvoiceWarehouses(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopToMeinvoiceWarehouses": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopUnit
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopUnit($id: Int!) { shopUnit(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopUnit($id: Int!) { shopUnit(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopUnit": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopUnit!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopUnitWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopUnits($limit: Int, $offset: Int, $where: ShopUnitWhereInput, $orderby: [OrderByInput!], $search: String) { shopUnits(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopUnits($limit: Int, $offset: Int, $where: ShopUnitWhereInput, $orderby: [OrderByInput!], $search: String) { shopUnits(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopUnits": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopVariant
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopVariant($id: Int!) { shopVariant(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopVariant($id: Int!) { shopVariant(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopVariant": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopVariantTax
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopVariantTax($id: Int!) { shopVariantTax(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopVariantTax($id: Int!) { shopVariantTax(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopVariantTax": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopVariantTax!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopVariantTaxWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopVariantTaxes($limit: Int, $offset: Int, $where: ShopVariantTaxWhereInput, $orderby: [OrderByInput!], $search: String) { shopVariantTaxes(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"tax_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"variant_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopVariantTaxes($limit: Int, $offset: Int, $where: ShopVariantTaxWhereInput, $orderby: [OrderByInput!], $search: String) { shopVariantTaxes(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "variant_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "tax_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopVariantTaxes": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopVariantTranslation
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopVariantTranslation($id: Int!) { shopVariantTranslation(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopVariantTranslation($id: Int!) { shopVariantTranslation(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopVariantTranslation": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopVariantTranslation!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopVariantTranslationWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopVariantTranslations($limit: Int, $offset: Int, $where: ShopVariantTranslationWhereInput, $orderby: [OrderByInput!], $search: String) { shopVariantTranslations(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"variant_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopVariantTranslations($limit: Int, $offset: Int, $where: ShopVariantTranslationWhereInput, $orderby: [OrderByInput!], $search: String) { shopVariantTranslations(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "variant_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopVariantTranslations": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopVariantUnit
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopVariantUnit($id: Int!) { shopVariantUnit(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopVariantUnit($id: Int!) { shopVariantUnit(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopVariantUnit": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopVariantUnit!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopVariantUnitWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopVariantUnits($limit: Int, $offset: Int, $where: ShopVariantUnitWhereInput, $orderby: [OrderByInput!], $search: String) { shopVariantUnits(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"is_active": {
"eq": false,
"is_null": false,
"ne": false
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"variant_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopVariantUnits($limit: Int, $offset: Int, $where: ShopVariantUnitWhereInput, $orderby: [OrderByInput!], $search: String) { shopVariantUnits(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "is_active": {"eq": false, "ne": false, "is_null": false}, "variant_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopVariantUnits": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopVariant!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopVariantWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopVariants($limit: Int, $offset: Int, $where: ShopVariantWhereInput, $orderby: [OrderByInput!], $search: String) { shopVariants(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"is_system": {
"eq": false,
"is_null": false,
"ne": false
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopVariants($limit: Int, $offset: Int, $where: ShopVariantWhereInput, $orderby: [OrderByInput!], $search: String) { shopVariants(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "is_system": {"eq": false, "ne": false, "is_null": false}}}}
HTTP 200 OK
{
"data": {
"shopVariants": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopVendor
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopVendor($id: Int!) { shopVendor(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopVendor($id: Int!) { shopVendor(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopVendor": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopVendor!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopVendorWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopVendors($limit: Int, $offset: Int, $where: ShopVendorWhereInput, $orderby: [OrderByInput!], $search: String) { shopVendors(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopVendors($limit: Int, $offset: Int, $where: ShopVendorWhereInput, $orderby: [OrderByInput!], $search: String) { shopVendors(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopVendors": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopWard
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopWard($id: Int!) { shopWard(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopWard($id: Int!) { shopWard(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopWard": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopWard!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopWardWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopWards($limit: Int, $offset: Int, $where: ShopWardWhereInput, $orderby: [OrderByInput!], $search: String) { shopWards(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopWards($limit: Int, $offset: Int, $where: ShopWardWhereInput, $orderby: [OrderByInput!], $search: String) { shopWards(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopWards": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopWarehouse
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopWarehouse($id: Int!) { shopWarehouse(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopWarehouse($id: Int!) { shopWarehouse(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"shopWarehouse": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[ShopWarehouse!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
ShopWarehouseWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_shopWarehouses($limit: Int, $offset: Int, $where: ShopWarehouseWhereInput, $orderby: [OrderByInput!], $search: String) { shopWarehouses(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"shop_id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_shopWarehouses($limit: Int, $offset: Int, $where: ShopWarehouseWhereInput, $orderby: [OrderByInput!], $search: String) { shopWarehouses(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "shop_id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}}}}
HTTP 200 OK
{
"data": {
"shopWarehouses": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[JSON]
| name | type | details |
|---|---|---|
source |
String | Optional |
target |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_taskDefinitions($source: String, $target: String) { taskDefinitions(source: $source, target: $target) }
{
"source": "string"
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_taskDefinitions($source: String, $target: String) { taskDefinitions(source: $source, target: $target) }", "variables": {"source": "string"}}
HTTP 200 OK
{
"data": {
"taskDefinitions": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
Ward
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_ward($id: Int!) { ward(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_ward($id: Int!) { ward(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"ward": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
[Ward!]!
| name | type | details |
|---|---|---|
limit |
Int | Optional |
offset |
Int | Optional |
where |
WardWhereInput | Optional |
orderby |
[OrderByInput!] | Optional |
search |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
query Query_wards($limit: Int, $offset: Int, $where: WardWhereInput, $orderby: [OrderByInput!], $search: String) { wards(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }
{
"where": {
"code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"country_code": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"created_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
},
"id": {
"eq": 1,
"gt": 1,
"gte": 1,
"lt": 1,
"lte": 1,
"ne": 1
},
"name": {
"contains": "string",
"ends_with": "string",
"eq": "string",
"in": [
"string"
],
"ne": "string",
"starts_with": "string"
},
"updated_at": {
"eq": "string",
"gt": "string",
"gte": "string",
"lt": "string",
"lte": "string",
"ne": "string"
}
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "query Query_wards($limit: Int, $offset: Int, $where: WardWhereInput, $orderby: [OrderByInput!], $search: String) { wards(limit: $limit, offset: $offset, where: $where, orderby: $orderby, search: $search) { id } }", "variables": {"where": {"id": {"eq": 1, "ne": 1, "gt": 1, "gte": 1, "lt": 1, "lte": 1}, "code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "name": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}, "created_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "updated_at": {"eq": "string", "ne": "string", "gt": "string", "gte": "string", "lt": "string", "lte": "string"}, "country_code": {"eq": "string", "ne": "string", "contains": "string", "starts_with": "string", "ends_with": "string", "in": ["string"]}}}}
HTTP 200 OK
{
"data": {
"wards": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateSapoToShopChannelPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createSapoToShopChannel($data: JSON!) { createSapoToShopChannel(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createSapoToShopChannel($data: JSON!) { createSapoToShopChannel(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createSapoToShopChannel": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateSapoToShopLocationPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createSapoToShopLocation($data: JSON!) { createSapoToShopLocation(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createSapoToShopLocation($data: JSON!) { createSapoToShopLocation(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createSapoToShopLocation": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopAccessTokenPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopAccessToken($data: JSON!) { createShopAccessToken(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopAccessToken($data: JSON!) { createShopAccessToken(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopAccessToken": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopAttachmentPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopAttachment($data: JSON!) { createShopAttachment(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopAttachment($data: JSON!) { createShopAttachment(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopAttachment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopAttributePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopAttribute($data: JSON!) { createShopAttribute(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopAttribute($data: JSON!) { createShopAttribute(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopAttribute": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopAttributeGroupPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopAttributeGroup($data: JSON!) { createShopAttributeGroup(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopAttributeGroup($data: JSON!) { createShopAttributeGroup(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopAttributeGroup": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopBankPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopBank($data: JSON!) { createShopBank(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopBank($data: JSON!) { createShopBank(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopBank": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopBranchPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopBranch($data: JSON!) { createShopBranch(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopBranch($data: JSON!) { createShopBranch(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopBranch": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopBrandPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopBrand($data: JSON!) { createShopBrand(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopBrand($data: JSON!) { createShopBrand(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopBrand": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopCarrierPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopCarrier($data: JSON!) { createShopCarrier(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopCarrier($data: JSON!) { createShopCarrier(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopCarrier": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopChannelPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopChannel($data: JSON!) { createShopChannel(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopChannel($data: JSON!) { createShopChannel(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopChannel": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopChannelProviderPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopChannelProvider($data: JSON!) { createShopChannelProvider(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopChannelProvider($data: JSON!) { createShopChannelProvider(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopChannelProvider": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopCountryPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopCountry($data: JSON!) { createShopCountry(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopCountry($data: JSON!) { createShopCountry(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopCountry": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopCurrencyPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopCurrency($data: JSON!) { createShopCurrency(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopCurrency($data: JSON!) { createShopCurrency(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopCurrency": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopCustomerPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopCustomer($data: JSON!) { createShopCustomer(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopCustomer($data: JSON!) { createShopCustomer(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopCustomer": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopCustomerBillingAddressPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopCustomerBillingAddress($data: JSON!) { createShopCustomerBillingAddress(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopCustomerBillingAddress($data: JSON!) { createShopCustomerBillingAddress(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopCustomerBillingAddress": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopCustomerGroupPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopCustomerGroup($data: JSON!) { createShopCustomerGroup(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopCustomerGroup($data: JSON!) { createShopCustomerGroup(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopCustomerGroup": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopCustomerShippingAddressPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopCustomerShippingAddress($data: JSON!) { createShopCustomerShippingAddress(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopCustomerShippingAddress($data: JSON!) { createShopCustomerShippingAddress(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopCustomerShippingAddress": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopDescriptionJsonPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopDescriptionJson($data: JSON!) { createShopDescriptionJson(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopDescriptionJson($data: JSON!) { createShopDescriptionJson(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopDescriptionJson": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopDiscountCodePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopDiscountCode($data: JSON!) { createShopDiscountCode(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopDiscountCode($data: JSON!) { createShopDiscountCode(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopDiscountCode": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopDistrictPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopDistrict($data: JSON!) { createShopDistrict(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopDistrict($data: JSON!) { createShopDistrict(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopDistrict": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopFilterPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopFilter($data: JSON!) { createShopFilter(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopFilter($data: JSON!) { createShopFilter(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopFilter": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopGatewayPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopGateway($data: JSON!) { createShopGateway(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopGateway($data: JSON!) { createShopGateway(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopGateway": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopInventoryAdjustmentPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopInventoryAdjustment($data: JSON!) { createShopInventoryAdjustment(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopInventoryAdjustment($data: JSON!) { createShopInventoryAdjustment(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopInventoryAdjustment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopInventoryAdjustmentLinePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopInventoryAdjustmentLine($data: JSON!) { createShopInventoryAdjustmentLine(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopInventoryAdjustmentLine($data: JSON!) { createShopInventoryAdjustmentLine(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopInventoryAdjustmentLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopInventoryTransferPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopInventoryTransfer($data: JSON!) { createShopInventoryTransfer(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopInventoryTransfer($data: JSON!) { createShopInventoryTransfer(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopInventoryTransfer": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopInventoryTransferLinePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopInventoryTransferLine($data: JSON!) { createShopInventoryTransferLine(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopInventoryTransferLine($data: JSON!) { createShopInventoryTransferLine(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopInventoryTransferLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopLicensePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopLicense($data: JSON!) { createShopLicense(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopLicense($data: JSON!) { createShopLicense(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopLicense": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopMediaPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopMedia($data: JSON!) { createShopMedia(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopMedia($data: JSON!) { createShopMedia(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopMedia": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopMediaCategoryPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopMediaCategory($data: JSON!) { createShopMediaCategory(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopMediaCategory($data: JSON!) { createShopMediaCategory(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopMediaCategory": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopMediaProductPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopMediaProduct($data: JSON!) { createShopMediaProduct(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopMediaProduct($data: JSON!) { createShopMediaProduct(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopMediaProduct": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopMediaVariantPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopMediaVariant($data: JSON!) { createShopMediaVariant(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopMediaVariant($data: JSON!) { createShopMediaVariant(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopMediaVariant": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopMemberPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopMember($data: JSON!) { createShopMember(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopMember($data: JSON!) { createShopMember(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopMember": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopMetaDataPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopMetaData($data: JSON!) { createShopMetaData(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopMetaData($data: JSON!) { createShopMetaData(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopMetaData": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopOrderPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopOrder($data: JSON!) { createShopOrder(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopOrder($data: JSON!) { createShopOrder(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopOrderFulfillmentPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopOrderFulfillment($data: JSON!) { createShopOrderFulfillment(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopOrderFulfillment($data: JSON!) { createShopOrderFulfillment(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopOrderFulfillment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopOrderLinePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopOrderLine($data: JSON!) { createShopOrderLine(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopOrderLine($data: JSON!) { createShopOrderLine(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopOrderTransactionPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopOrderTransaction($data: JSON!) { createShopOrderTransaction(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopOrderTransaction($data: JSON!) { createShopOrderTransaction(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopOrderTransaction": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopPaymentMethodPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopPaymentMethod($data: JSON!) { createShopPaymentMethod(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopPaymentMethod($data: JSON!) { createShopPaymentMethod(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopPaymentMethod": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopPaymentMethodGatewayPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopPaymentMethodGateway($data: JSON!) { createShopPaymentMethodGateway(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopPaymentMethodGateway($data: JSON!) { createShopPaymentMethodGateway(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopPaymentMethodGateway": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopPreOrderPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopPreOrder($data: JSON!) { createShopPreOrder(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopPreOrder($data: JSON!) { createShopPreOrder(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopPreOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopPreOrderLinePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopPreOrderLine($data: JSON!) { createShopPreOrderLine(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopPreOrderLine($data: JSON!) { createShopPreOrderLine(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopPreOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopPrePurchaseOrderPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopPrePurchaseOrder($data: JSON!) { createShopPrePurchaseOrder(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopPrePurchaseOrder($data: JSON!) { createShopPrePurchaseOrder(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopPrePurchaseOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopPrePurchaseOrderLinePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopPrePurchaseOrderLine($data: JSON!) { createShopPrePurchaseOrderLine(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopPrePurchaseOrderLine($data: JSON!) { createShopPrePurchaseOrderLine(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopPrePurchaseOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopPrintTemplatePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopPrintTemplate($data: JSON!) { createShopPrintTemplate(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopPrintTemplate($data: JSON!) { createShopPrintTemplate(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopPrintTemplate": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopPrivateMetadataPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopPrivateMetadata($data: JSON!) { createShopPrivateMetadata(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopPrivateMetadata($data: JSON!) { createShopPrivateMetadata(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopPrivateMetadata": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopPrivateNotePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopPrivateNote($data: JSON!) { createShopPrivateNote(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopPrivateNote($data: JSON!) { createShopPrivateNote(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopPrivateNote": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopProductPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopProduct($data: JSON!) { createShopProduct(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopProduct($data: JSON!) { createShopProduct(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopProduct": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopProductCategoryPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopProductCategory($data: JSON!) { createShopProductCategory(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopProductCategory($data: JSON!) { createShopProductCategory(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopProductCategory": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopProductCategoryChannelPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopProductCategoryChannel($data: JSON!) { createShopProductCategoryChannel(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopProductCategoryChannel($data: JSON!) { createShopProductCategoryChannel(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopProductCategoryChannel": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopProductChannelPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopProductChannel($data: JSON!) { createShopProductChannel(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopProductChannel($data: JSON!) { createShopProductChannel(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopProductChannel": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopProductItemPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopProductItem($data: JSON!) { createShopProductItem(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopProductItem($data: JSON!) { createShopProductItem(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopProductItem": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopPromotionPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopPromotion($data: JSON!) { createShopPromotion(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopPromotion($data: JSON!) { createShopPromotion(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopPromotion": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopProviderPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopProvider($data: JSON!) { createShopProvider(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopProvider($data: JSON!) { createShopProvider(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopProvider": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopProvincePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopProvince($data: JSON!) { createShopProvince(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopProvince($data: JSON!) { createShopProvince(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopProvince": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopPurchaseOrderPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopPurchaseOrder($data: JSON!) { createShopPurchaseOrder(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopPurchaseOrder($data: JSON!) { createShopPurchaseOrder(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopPurchaseOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopPurchaseOrderFulfillmentPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopPurchaseOrderFulfillment($data: JSON!) { createShopPurchaseOrderFulfillment(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopPurchaseOrderFulfillment($data: JSON!) { createShopPurchaseOrderFulfillment(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopPurchaseOrderFulfillment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopPurchaseOrderFulfillmentLinePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopPurchaseOrderFulfillmentLine($data: JSON!) { createShopPurchaseOrderFulfillmentLine(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopPurchaseOrderFulfillmentLine($data: JSON!) { createShopPurchaseOrderFulfillmentLine(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopPurchaseOrderFulfillmentLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopPurchaseOrderLinePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopPurchaseOrderLine($data: JSON!) { createShopPurchaseOrderLine(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopPurchaseOrderLine($data: JSON!) { createShopPurchaseOrderLine(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopPurchaseOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopPurchaseOrderTransactionPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopPurchaseOrderTransaction($data: JSON!) { createShopPurchaseOrderTransaction(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopPurchaseOrderTransaction($data: JSON!) { createShopPurchaseOrderTransaction(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopPurchaseOrderTransaction": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopPurchaseReturnOrderPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopPurchaseReturnOrder($data: JSON!) { createShopPurchaseReturnOrder(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopPurchaseReturnOrder($data: JSON!) { createShopPurchaseReturnOrder(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopPurchaseReturnOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopPurchaseReturnOrderFulfillmentPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopPurchaseReturnOrderFulfillment($data: JSON!) { createShopPurchaseReturnOrderFulfillment(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopPurchaseReturnOrderFulfillment($data: JSON!) { createShopPurchaseReturnOrderFulfillment(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopPurchaseReturnOrderFulfillment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopPurchaseReturnOrderFulfillmentLinePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopPurchaseReturnOrderFulfillmentLine($data: JSON!) { createShopPurchaseReturnOrderFulfillmentLine(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopPurchaseReturnOrderFulfillmentLine($data: JSON!) { createShopPurchaseReturnOrderFulfillmentLine(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopPurchaseReturnOrderFulfillmentLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopPurchaseReturnOrderLinePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopPurchaseReturnOrderLine($data: JSON!) { createShopPurchaseReturnOrderLine(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopPurchaseReturnOrderLine($data: JSON!) { createShopPurchaseReturnOrderLine(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopPurchaseReturnOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopPurchaseReturnOrderTransactionPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopPurchaseReturnOrderTransaction($data: JSON!) { createShopPurchaseReturnOrderTransaction(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopPurchaseReturnOrderTransaction($data: JSON!) { createShopPurchaseReturnOrderTransaction(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopPurchaseReturnOrderTransaction": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopReportTemplatePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopReportTemplate($data: JSON!) { createShopReportTemplate(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopReportTemplate($data: JSON!) { createShopReportTemplate(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopReportTemplate": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopReturnOrderPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopReturnOrder($data: JSON!) { createShopReturnOrder(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopReturnOrder($data: JSON!) { createShopReturnOrder(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopReturnOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopReturnOrderFulfillmentPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopReturnOrderFulfillment($data: JSON!) { createShopReturnOrderFulfillment(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopReturnOrderFulfillment($data: JSON!) { createShopReturnOrderFulfillment(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopReturnOrderFulfillment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopReturnOrderFulfillmentLinePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopReturnOrderFulfillmentLine($data: JSON!) { createShopReturnOrderFulfillmentLine(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopReturnOrderFulfillmentLine($data: JSON!) { createShopReturnOrderFulfillmentLine(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopReturnOrderFulfillmentLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopReturnOrderLinePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopReturnOrderLine($data: JSON!) { createShopReturnOrderLine(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopReturnOrderLine($data: JSON!) { createShopReturnOrderLine(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopReturnOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopReturnOrderTransactionPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopReturnOrderTransaction($data: JSON!) { createShopReturnOrderTransaction(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopReturnOrderTransaction($data: JSON!) { createShopReturnOrderTransaction(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopReturnOrderTransaction": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopScopePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopScope($data: JSON!) { createShopScope(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopScope($data: JSON!) { createShopScope(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopScope": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopSettingsPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopSettings($data: JSON!) { createShopSettings(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopSettings($data: JSON!) { createShopSettings(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopSettings": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopSourcePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopSource($data: JSON!) { createShopSource(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopSource($data: JSON!) { createShopSource(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopSource": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopSupplierPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopSupplier($data: JSON!) { createShopSupplier(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopSupplier($data: JSON!) { createShopSupplier(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopSupplier": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopTagPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopTag($data: JSON!) { createShopTag(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopTag($data: JSON!) { createShopTag(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopTag": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopTaskPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopTask($data: JSON!) { createShopTask(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopTask($data: JSON!) { createShopTask(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopTask": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopTaxPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopTax($data: JSON!) { createShopTax(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopTax($data: JSON!) { createShopTax(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopTax": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopUnitPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopUnit($data: JSON!) { createShopUnit(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopUnit($data: JSON!) { createShopUnit(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopUnit": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopVariantPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopVariant($data: JSON!) { createShopVariant(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopVariant($data: JSON!) { createShopVariant(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopVariant": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopVariantTaxPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopVariantTax($data: JSON!) { createShopVariantTax(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopVariantTax($data: JSON!) { createShopVariantTax(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopVariantTax": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopVariantUnitPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopVariantUnit($data: JSON!) { createShopVariantUnit(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopVariantUnit($data: JSON!) { createShopVariantUnit(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopVariantUnit": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopVendorPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopVendor($data: JSON!) { createShopVendor(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopVendor($data: JSON!) { createShopVendor(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopVendor": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopWardPayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopWard($data: JSON!) { createShopWard(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopWard($data: JSON!) { createShopWard(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopWard": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
CreateShopWarehousePayload!
| name | type | details |
|---|---|---|
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_createShopWarehouse($data: JSON!) { createShopWarehouse(data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_createShopWarehouse($data: JSON!) { createShopWarehouse(data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"createShopWarehouse": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UploadMediaPayload!
| name | type | details |
|---|---|---|
media |
Upload! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_uploadMedia($media: Upload!) { uploadMedia(media: $media) { id } }
{
"media": "string"
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_uploadMedia($media: Upload!) { uploadMedia(media: $media) { id } }", "variables": {"media": "string"}}
HTTP 200 OK
{
"data": {
"uploadMedia": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UploadMediaPayload!
| name | type | details |
|---|---|---|
url |
String! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_uploadMediaByUrl($url: String!) { uploadMediaByUrl(url: $url) { id } }
{
"url": "string"
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_uploadMediaByUrl($url: String!) { uploadMediaByUrl(url: $url) { id } }", "variables": {"url": "string"}}
HTTP 200 OK
{
"data": {
"uploadMediaByUrl": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateAmisACTOpenAccountsPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateAmisACTOpenAccounts($id: Int!, $data: JSON!) { updateAmisACTOpenAccounts(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateAmisACTOpenAccounts($id: Int!, $data: JSON!) { updateAmisACTOpenAccounts(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateAmisACTOpenAccounts": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateAmisACTOpenAllOrganizationUnitsPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateAmisACTOpenAllOrganizationUnits($id: Int!, $data: JSON!) { updateAmisACTOpenAllOrganizationUnits(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateAmisACTOpenAllOrganizationUnits($id: Int!, $data: JSON!) { updateAmisACTOpenAllOrganizationUnits(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateAmisACTOpenAllOrganizationUnits": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateAmisAccountObjectsPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateAmisAccountObjects($id: Int!, $data: JSON!) { updateAmisAccountObjects(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateAmisAccountObjects($id: Int!, $data: JSON!) { updateAmisAccountObjects(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateAmisAccountObjects": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateAmisBankAccountsPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateAmisBankAccounts($id: Int!, $data: JSON!) { updateAmisBankAccounts(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateAmisBankAccounts($id: Int!, $data: JSON!) { updateAmisBankAccounts(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateAmisBankAccounts": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateAmisCompanyInfoPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateAmisCompanyInfo($id: Int!, $data: JSON!) { updateAmisCompanyInfo(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateAmisCompanyInfo($id: Int!, $data: JSON!) { updateAmisCompanyInfo(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateAmisCompanyInfo": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateAmisExpenseItemsPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateAmisExpenseItems($id: Int!, $data: JSON!) { updateAmisExpenseItems(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateAmisExpenseItems($id: Int!, $data: JSON!) { updateAmisExpenseItems(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateAmisExpenseItems": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateAmisInventoryItemsPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateAmisInventoryItems($id: Int!, $data: JSON!) { updateAmisInventoryItems(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateAmisInventoryItems($id: Int!, $data: JSON!) { updateAmisInventoryItems(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateAmisInventoryItems": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateAmisJobsPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateAmisJobs($id: Int!, $data: JSON!) { updateAmisJobs(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateAmisJobs($id: Int!, $data: JSON!) { updateAmisJobs(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateAmisJobs": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateAmisLastSyncTimesPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateAmisLastSyncTimes($id: Int!, $data: JSON!) { updateAmisLastSyncTimes(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateAmisLastSyncTimes($id: Int!, $data: JSON!) { updateAmisLastSyncTimes(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateAmisLastSyncTimes": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateAmisListInventoryBalancePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateAmisListInventoryBalance($id: Int!, $data: JSON!) { updateAmisListInventoryBalance(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateAmisListInventoryBalance($id: Int!, $data: JSON!) { updateAmisListInventoryBalance(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateAmisListInventoryBalance": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateAmisOptionsPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateAmisOptions($id: Int!, $data: JSON!) { updateAmisOptions(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateAmisOptions($id: Int!, $data: JSON!) { updateAmisOptions(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateAmisOptions": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateAmisPaymentTermsPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateAmisPaymentTerms($id: Int!, $data: JSON!) { updateAmisPaymentTerms(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateAmisPaymentTerms($id: Int!, $data: JSON!) { updateAmisPaymentTerms(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateAmisPaymentTerms": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateAmisProjectWorksPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateAmisProjectWorks($id: Int!, $data: JSON!) { updateAmisProjectWorks(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateAmisProjectWorks($id: Int!, $data: JSON!) { updateAmisProjectWorks(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateAmisProjectWorks": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateAmisSettingsPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateAmisSettings($id: Int!, $data: JSON!) { updateAmisSettings(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateAmisSettings($id: Int!, $data: JSON!) { updateAmisSettings(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateAmisSettings": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateAmisStocksPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateAmisStocks($id: Int!, $data: JSON!) { updateAmisStocks(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateAmisStocks($id: Int!, $data: JSON!) { updateAmisStocks(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateAmisStocks": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateAmisUnitsPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateAmisUnits($id: Int!, $data: JSON!) { updateAmisUnits(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateAmisUnits($id: Int!, $data: JSON!) { updateAmisUnits(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateAmisUnits": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateCountryPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateCountry($id: Int!, $data: JSON!) { updateCountry(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateCountry($id: Int!, $data: JSON!) { updateCountry(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateCountry": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateDistrictPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateDistrict($id: Int!, $data: JSON!) { updateDistrict(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateDistrict($id: Int!, $data: JSON!) { updateDistrict(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateDistrict": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateMeinvoiceTemplatePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateMeinvoiceTemplate($id: Int!, $data: JSON!) { updateMeinvoiceTemplate(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateMeinvoiceTemplate($id: Int!, $data: JSON!) { updateMeinvoiceTemplate(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateMeinvoiceTemplate": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateProvincePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateProvince($id: Int!, $data: JSON!) { updateProvince(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateProvince($id: Int!, $data: JSON!) { updateProvince(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateProvince": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateSapoLocationPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateSapoLocation($id: Int!, $data: JSON!) { updateSapoLocation(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateSapoLocation($id: Int!, $data: JSON!) { updateSapoLocation(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateSapoLocation": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateSapoShopPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateSapoShop($id: Int!, $data: JSON!) { updateSapoShop(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateSapoShop($id: Int!, $data: JSON!) { updateSapoShop(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateSapoShop": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateSapoSupplierPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateSapoSupplier($id: Int!, $data: JSON!) { updateSapoSupplier(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateSapoSupplier($id: Int!, $data: JSON!) { updateSapoSupplier(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateSapoSupplier": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateSapoToShopChannelPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateSapoToShopChannel($id: Int!, $data: JSON!) { updateSapoToShopChannel(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateSapoToShopChannel($id: Int!, $data: JSON!) { updateSapoToShopChannel(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateSapoToShopChannel": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateSapoToShopLocationPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateSapoToShopLocation($id: Int!, $data: JSON!) { updateSapoToShopLocation(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateSapoToShopLocation($id: Int!, $data: JSON!) { updateSapoToShopLocation(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateSapoToShopLocation": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShop($id: Int!, $data: JSON!) { updateShop(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShop($id: Int!, $data: JSON!) { updateShop(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShop": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopAccessTokenPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopAccessToken($id: Int!, $data: JSON!) { updateShopAccessToken(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopAccessToken($id: Int!, $data: JSON!) { updateShopAccessToken(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopAccessToken": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopActionPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopAction($id: Int!, $data: JSON!) { updateShopAction(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopAction($id: Int!, $data: JSON!) { updateShopAction(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopAction": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopActivityPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopActivity($id: Int!, $data: JSON!) { updateShopActivity(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopActivity($id: Int!, $data: JSON!) { updateShopActivity(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopActivity": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopAttachmentPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopAttachment($id: Int!, $data: JSON!) { updateShopAttachment(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopAttachment($id: Int!, $data: JSON!) { updateShopAttachment(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopAttachment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopAttributePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopAttribute($id: Int!, $data: JSON!) { updateShopAttribute(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopAttribute($id: Int!, $data: JSON!) { updateShopAttribute(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopAttribute": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopAttributeGroupPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopAttributeGroup($id: Int!, $data: JSON!) { updateShopAttributeGroup(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopAttributeGroup($id: Int!, $data: JSON!) { updateShopAttributeGroup(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopAttributeGroup": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopBankPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopBank($id: Int!, $data: JSON!) { updateShopBank(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopBank($id: Int!, $data: JSON!) { updateShopBank(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopBank": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopBranchPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopBranch($id: Int!, $data: JSON!) { updateShopBranch(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopBranch($id: Int!, $data: JSON!) { updateShopBranch(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopBranch": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopBrandPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopBrand($id: Int!, $data: JSON!) { updateShopBrand(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopBrand($id: Int!, $data: JSON!) { updateShopBrand(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopBrand": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopCarrierPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopCarrier($id: Int!, $data: JSON!) { updateShopCarrier(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopCarrier($id: Int!, $data: JSON!) { updateShopCarrier(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopCarrier": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopChannelPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopChannel($id: Int!, $data: JSON!) { updateShopChannel(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopChannel($id: Int!, $data: JSON!) { updateShopChannel(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopChannel": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopChannelProviderPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopChannelProvider($id: Int!, $data: JSON!) { updateShopChannelProvider(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopChannelProvider($id: Int!, $data: JSON!) { updateShopChannelProvider(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopChannelProvider": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopCheckoutOrderPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopCheckoutOrder($id: Int!, $data: JSON!) { updateShopCheckoutOrder(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopCheckoutOrder($id: Int!, $data: JSON!) { updateShopCheckoutOrder(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopCheckoutOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopCheckoutOrderLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopCheckoutOrderLine($id: Int!, $data: JSON!) { updateShopCheckoutOrderLine(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopCheckoutOrderLine($id: Int!, $data: JSON!) { updateShopCheckoutOrderLine(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopCheckoutOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopCompanyPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopCompany($id: Int!, $data: JSON!) { updateShopCompany(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopCompany($id: Int!, $data: JSON!) { updateShopCompany(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopCompany": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopCountryPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopCountry($id: Int!, $data: JSON!) { updateShopCountry(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopCountry($id: Int!, $data: JSON!) { updateShopCountry(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopCountry": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopCurrencyPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopCurrency($id: Int!, $data: JSON!) { updateShopCurrency(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopCurrency($id: Int!, $data: JSON!) { updateShopCurrency(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopCurrency": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopCustomerPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopCustomer($id: Int!, $data: JSON!) { updateShopCustomer(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopCustomer($id: Int!, $data: JSON!) { updateShopCustomer(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopCustomer": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopCustomerBillingAddressPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopCustomerBillingAddress($id: Int!, $data: JSON!) { updateShopCustomerBillingAddress(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopCustomerBillingAddress($id: Int!, $data: JSON!) { updateShopCustomerBillingAddress(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopCustomerBillingAddress": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopCustomerGroupPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopCustomerGroup($id: Int!, $data: JSON!) { updateShopCustomerGroup(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopCustomerGroup($id: Int!, $data: JSON!) { updateShopCustomerGroup(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopCustomerGroup": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopCustomerShippingAddressPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopCustomerShippingAddress($id: Int!, $data: JSON!) { updateShopCustomerShippingAddress(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopCustomerShippingAddress($id: Int!, $data: JSON!) { updateShopCustomerShippingAddress(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopCustomerShippingAddress": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopDescriptionJsonPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopDescriptionJson($id: Int!, $data: JSON!) { updateShopDescriptionJson(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopDescriptionJson($id: Int!, $data: JSON!) { updateShopDescriptionJson(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopDescriptionJson": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopDiscountCodePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopDiscountCode($id: Int!, $data: JSON!) { updateShopDiscountCode(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopDiscountCode($id: Int!, $data: JSON!) { updateShopDiscountCode(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopDiscountCode": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopDistrictPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopDistrict($id: Int!, $data: JSON!) { updateShopDistrict(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopDistrict($id: Int!, $data: JSON!) { updateShopDistrict(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopDistrict": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopFilterPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopFilter($id: Int!, $data: JSON!) { updateShopFilter(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopFilter($id: Int!, $data: JSON!) { updateShopFilter(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopFilter": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopGatewayPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopGateway($id: Int!, $data: JSON!) { updateShopGateway(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopGateway($id: Int!, $data: JSON!) { updateShopGateway(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopGateway": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopInventoryAdjustmentPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopInventoryAdjustment($id: Int!, $data: JSON!) { updateShopInventoryAdjustment(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopInventoryAdjustment($id: Int!, $data: JSON!) { updateShopInventoryAdjustment(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopInventoryAdjustment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopInventoryAdjustmentLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopInventoryAdjustmentLine($id: Int!, $data: JSON!) { updateShopInventoryAdjustmentLine(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopInventoryAdjustmentLine($id: Int!, $data: JSON!) { updateShopInventoryAdjustmentLine(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopInventoryAdjustmentLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopInventoryItemPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopInventoryItem($id: Int!, $data: JSON!) { updateShopInventoryItem(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopInventoryItem($id: Int!, $data: JSON!) { updateShopInventoryItem(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopInventoryItem": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopInventoryItemLotPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopInventoryItemLot($id: Int!, $data: JSON!) { updateShopInventoryItemLot(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopInventoryItemLot($id: Int!, $data: JSON!) { updateShopInventoryItemLot(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopInventoryItemLot": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopInventoryTransferPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopInventoryTransfer($id: Int!, $data: JSON!) { updateShopInventoryTransfer(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopInventoryTransfer($id: Int!, $data: JSON!) { updateShopInventoryTransfer(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopInventoryTransfer": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopInventoryTransferLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopInventoryTransferLine($id: Int!, $data: JSON!) { updateShopInventoryTransferLine(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopInventoryTransferLine($id: Int!, $data: JSON!) { updateShopInventoryTransferLine(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopInventoryTransferLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopLicensePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopLicense($id: Int!, $data: JSON!) { updateShopLicense(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopLicense($id: Int!, $data: JSON!) { updateShopLicense(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopLicense": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopMediaPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopMedia($id: Int!, $data: JSON!) { updateShopMedia(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopMedia($id: Int!, $data: JSON!) { updateShopMedia(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopMedia": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopMediaCategoryPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopMediaCategory($id: Int!, $data: JSON!) { updateShopMediaCategory(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopMediaCategory($id: Int!, $data: JSON!) { updateShopMediaCategory(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopMediaCategory": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopMediaProductPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopMediaProduct($id: Int!, $data: JSON!) { updateShopMediaProduct(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopMediaProduct($id: Int!, $data: JSON!) { updateShopMediaProduct(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopMediaProduct": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopMediaVariantPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopMediaVariant($id: Int!, $data: JSON!) { updateShopMediaVariant(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopMediaVariant($id: Int!, $data: JSON!) { updateShopMediaVariant(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopMediaVariant": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopMemberPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopMember($id: Int!, $data: JSON!) { updateShopMember(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopMember($id: Int!, $data: JSON!) { updateShopMember(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopMember": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopMetaDataPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopMetaData($id: Int!, $data: JSON!) { updateShopMetaData(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopMetaData($id: Int!, $data: JSON!) { updateShopMetaData(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopMetaData": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopOrderPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopOrder($id: Int!, $data: JSON!) { updateShopOrder(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopOrder($id: Int!, $data: JSON!) { updateShopOrder(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopOrderAppliedPromotionPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopOrderAppliedPromotion($id: Int!, $data: JSON!) { updateShopOrderAppliedPromotion(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopOrderAppliedPromotion($id: Int!, $data: JSON!) { updateShopOrderAppliedPromotion(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopOrderAppliedPromotion": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopOrderFulfillmentPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopOrderFulfillment($id: Int!, $data: JSON!) { updateShopOrderFulfillment(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopOrderFulfillment($id: Int!, $data: JSON!) { updateShopOrderFulfillment(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopOrderFulfillment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopOrderFulfillmentLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopOrderFulfillmentLine($id: Int!, $data: JSON!) { updateShopOrderFulfillmentLine(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopOrderFulfillmentLine($id: Int!, $data: JSON!) { updateShopOrderFulfillmentLine(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopOrderFulfillmentLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopOrderLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopOrderLine($id: Int!, $data: JSON!) { updateShopOrderLine(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopOrderLine($id: Int!, $data: JSON!) { updateShopOrderLine(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopOrderTransactionPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopOrderTransaction($id: Int!, $data: JSON!) { updateShopOrderTransaction(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopOrderTransaction($id: Int!, $data: JSON!) { updateShopOrderTransaction(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopOrderTransaction": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopOrderTransactionBasePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopOrderTransactionBase($id: Int!, $data: JSON!) { updateShopOrderTransactionBase(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopOrderTransactionBase($id: Int!, $data: JSON!) { updateShopOrderTransactionBase(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopOrderTransactionBase": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPaymentMethodPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopPaymentMethod($id: Int!, $data: JSON!) { updateShopPaymentMethod(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopPaymentMethod($id: Int!, $data: JSON!) { updateShopPaymentMethod(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopPaymentMethod": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPaymentMethodGatewayPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopPaymentMethodGateway($id: Int!, $data: JSON!) { updateShopPaymentMethodGateway(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopPaymentMethodGateway($id: Int!, $data: JSON!) { updateShopPaymentMethodGateway(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopPaymentMethodGateway": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPreOrderPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopPreOrder($id: Int!, $data: JSON!) { updateShopPreOrder(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopPreOrder($id: Int!, $data: JSON!) { updateShopPreOrder(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopPreOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPreOrderLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopPreOrderLine($id: Int!, $data: JSON!) { updateShopPreOrderLine(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopPreOrderLine($id: Int!, $data: JSON!) { updateShopPreOrderLine(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopPreOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPrePurchaseOrderPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopPrePurchaseOrder($id: Int!, $data: JSON!) { updateShopPrePurchaseOrder(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopPrePurchaseOrder($id: Int!, $data: JSON!) { updateShopPrePurchaseOrder(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopPrePurchaseOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPrePurchaseOrderLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopPrePurchaseOrderLine($id: Int!, $data: JSON!) { updateShopPrePurchaseOrderLine(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopPrePurchaseOrderLine($id: Int!, $data: JSON!) { updateShopPrePurchaseOrderLine(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopPrePurchaseOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPrintTemplatePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopPrintTemplate($id: Int!, $data: JSON!) { updateShopPrintTemplate(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopPrintTemplate($id: Int!, $data: JSON!) { updateShopPrintTemplate(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopPrintTemplate": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPrivateMetadataPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopPrivateMetadata($id: Int!, $data: JSON!) { updateShopPrivateMetadata(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopPrivateMetadata($id: Int!, $data: JSON!) { updateShopPrivateMetadata(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopPrivateMetadata": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPrivateNotePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopPrivateNote($id: Int!, $data: JSON!) { updateShopPrivateNote(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopPrivateNote($id: Int!, $data: JSON!) { updateShopPrivateNote(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopPrivateNote": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopProductPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopProduct($id: Int!, $data: JSON!) { updateShopProduct(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopProduct($id: Int!, $data: JSON!) { updateShopProduct(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopProduct": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopProductCategoryPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopProductCategory($id: Int!, $data: JSON!) { updateShopProductCategory(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopProductCategory($id: Int!, $data: JSON!) { updateShopProductCategory(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopProductCategory": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopProductCategoryChannelPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopProductCategoryChannel($id: Int!, $data: JSON!) { updateShopProductCategoryChannel(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopProductCategoryChannel($id: Int!, $data: JSON!) { updateShopProductCategoryChannel(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopProductCategoryChannel": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopProductChannelPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopProductChannel($id: Int!, $data: JSON!) { updateShopProductChannel(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopProductChannel($id: Int!, $data: JSON!) { updateShopProductChannel(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopProductChannel": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopProductItemPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopProductItem($id: Int!, $data: JSON!) { updateShopProductItem(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopProductItem($id: Int!, $data: JSON!) { updateShopProductItem(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopProductItem": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopProductTranslationPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopProductTranslation($id: Int!, $data: JSON!) { updateShopProductTranslation(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopProductTranslation($id: Int!, $data: JSON!) { updateShopProductTranslation(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopProductTranslation": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPromotionPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopPromotion($id: Int!, $data: JSON!) { updateShopPromotion(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopPromotion($id: Int!, $data: JSON!) { updateShopPromotion(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopPromotion": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopProviderPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopProvider($id: Int!, $data: JSON!) { updateShopProvider(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopProvider($id: Int!, $data: JSON!) { updateShopProvider(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopProvider": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopProvincePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopProvince($id: Int!, $data: JSON!) { updateShopProvince(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopProvince($id: Int!, $data: JSON!) { updateShopProvince(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopProvince": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPurchaseOrderPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopPurchaseOrder($id: Int!, $data: JSON!) { updateShopPurchaseOrder(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopPurchaseOrder($id: Int!, $data: JSON!) { updateShopPurchaseOrder(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopPurchaseOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPurchaseOrderFulfillmentPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopPurchaseOrderFulfillment($id: Int!, $data: JSON!) { updateShopPurchaseOrderFulfillment(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopPurchaseOrderFulfillment($id: Int!, $data: JSON!) { updateShopPurchaseOrderFulfillment(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopPurchaseOrderFulfillment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPurchaseOrderFulfillmentLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopPurchaseOrderFulfillmentLine($id: Int!, $data: JSON!) { updateShopPurchaseOrderFulfillmentLine(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopPurchaseOrderFulfillmentLine($id: Int!, $data: JSON!) { updateShopPurchaseOrderFulfillmentLine(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopPurchaseOrderFulfillmentLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPurchaseOrderLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopPurchaseOrderLine($id: Int!, $data: JSON!) { updateShopPurchaseOrderLine(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopPurchaseOrderLine($id: Int!, $data: JSON!) { updateShopPurchaseOrderLine(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopPurchaseOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPurchaseOrderTransactionPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopPurchaseOrderTransaction($id: Int!, $data: JSON!) { updateShopPurchaseOrderTransaction(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopPurchaseOrderTransaction($id: Int!, $data: JSON!) { updateShopPurchaseOrderTransaction(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopPurchaseOrderTransaction": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPurchaseReturnOrderPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopPurchaseReturnOrder($id: Int!, $data: JSON!) { updateShopPurchaseReturnOrder(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopPurchaseReturnOrder($id: Int!, $data: JSON!) { updateShopPurchaseReturnOrder(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopPurchaseReturnOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPurchaseReturnOrderFulfillmentPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopPurchaseReturnOrderFulfillment($id: Int!, $data: JSON!) { updateShopPurchaseReturnOrderFulfillment(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopPurchaseReturnOrderFulfillment($id: Int!, $data: JSON!) { updateShopPurchaseReturnOrderFulfillment(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopPurchaseReturnOrderFulfillment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPurchaseReturnOrderFulfillmentLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopPurchaseReturnOrderFulfillmentLine($id: Int!, $data: JSON!) { updateShopPurchaseReturnOrderFulfillmentLine(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopPurchaseReturnOrderFulfillmentLine($id: Int!, $data: JSON!) { updateShopPurchaseReturnOrderFulfillmentLine(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopPurchaseReturnOrderFulfillmentLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPurchaseReturnOrderLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopPurchaseReturnOrderLine($id: Int!, $data: JSON!) { updateShopPurchaseReturnOrderLine(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopPurchaseReturnOrderLine($id: Int!, $data: JSON!) { updateShopPurchaseReturnOrderLine(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopPurchaseReturnOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopPurchaseReturnOrderTransactionPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopPurchaseReturnOrderTransaction($id: Int!, $data: JSON!) { updateShopPurchaseReturnOrderTransaction(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopPurchaseReturnOrderTransaction($id: Int!, $data: JSON!) { updateShopPurchaseReturnOrderTransaction(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopPurchaseReturnOrderTransaction": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopReportTemplatePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopReportTemplate($id: Int!, $data: JSON!) { updateShopReportTemplate(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopReportTemplate($id: Int!, $data: JSON!) { updateShopReportTemplate(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopReportTemplate": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopReturnOrderPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopReturnOrder($id: Int!, $data: JSON!) { updateShopReturnOrder(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopReturnOrder($id: Int!, $data: JSON!) { updateShopReturnOrder(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopReturnOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopReturnOrderFulfillmentPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopReturnOrderFulfillment($id: Int!, $data: JSON!) { updateShopReturnOrderFulfillment(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopReturnOrderFulfillment($id: Int!, $data: JSON!) { updateShopReturnOrderFulfillment(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopReturnOrderFulfillment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopReturnOrderFulfillmentLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopReturnOrderFulfillmentLine($id: Int!, $data: JSON!) { updateShopReturnOrderFulfillmentLine(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopReturnOrderFulfillmentLine($id: Int!, $data: JSON!) { updateShopReturnOrderFulfillmentLine(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopReturnOrderFulfillmentLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopReturnOrderLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopReturnOrderLine($id: Int!, $data: JSON!) { updateShopReturnOrderLine(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopReturnOrderLine($id: Int!, $data: JSON!) { updateShopReturnOrderLine(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopReturnOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopReturnOrderTransactionPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopReturnOrderTransaction($id: Int!, $data: JSON!) { updateShopReturnOrderTransaction(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopReturnOrderTransaction($id: Int!, $data: JSON!) { updateShopReturnOrderTransaction(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopReturnOrderTransaction": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopScopePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopScope($id: Int!, $data: JSON!) { updateShopScope(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopScope($id: Int!, $data: JSON!) { updateShopScope(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopScope": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopSettingsPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopSettings($id: Int!, $data: JSON!) { updateShopSettings(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopSettings($id: Int!, $data: JSON!) { updateShopSettings(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopSettings": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopSourcePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopSource($id: Int!, $data: JSON!) { updateShopSource(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopSource($id: Int!, $data: JSON!) { updateShopSource(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopSource": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopSupplierPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopSupplier($id: Int!, $data: JSON!) { updateShopSupplier(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopSupplier($id: Int!, $data: JSON!) { updateShopSupplier(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopSupplier": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopTagPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopTag($id: Int!, $data: JSON!) { updateShopTag(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopTag($id: Int!, $data: JSON!) { updateShopTag(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopTag": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopTaskPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopTask($id: Int!, $data: JSON!) { updateShopTask(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopTask($id: Int!, $data: JSON!) { updateShopTask(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopTask": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopTaskLogPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopTaskLog($id: Int!, $data: JSON!) { updateShopTaskLog(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopTaskLog($id: Int!, $data: JSON!) { updateShopTaskLog(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopTaskLog": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopTaxPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopTax($id: Int!, $data: JSON!) { updateShopTax(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopTax($id: Int!, $data: JSON!) { updateShopTax(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopTax": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopToAmisBranchPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopToAmisBranch($id: Int!, $data: JSON!) { updateShopToAmisBranch(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopToAmisBranch($id: Int!, $data: JSON!) { updateShopToAmisBranch(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopToAmisBranch": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopToAmisCarrierPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopToAmisCarrier($id: Int!, $data: JSON!) { updateShopToAmisCarrier(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopToAmisCarrier($id: Int!, $data: JSON!) { updateShopToAmisCarrier(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopToAmisCarrier": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopToAmisChannelPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopToAmisChannel($id: Int!, $data: JSON!) { updateShopToAmisChannel(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopToAmisChannel($id: Int!, $data: JSON!) { updateShopToAmisChannel(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopToAmisChannel": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopToAmisGatewayPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopToAmisGateway($id: Int!, $data: JSON!) { updateShopToAmisGateway(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopToAmisGateway($id: Int!, $data: JSON!) { updateShopToAmisGateway(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopToAmisGateway": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopToAmisPayloadPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopToAmisPayload($id: Int!, $data: JSON!) { updateShopToAmisPayload(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopToAmisPayload($id: Int!, $data: JSON!) { updateShopToAmisPayload(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopToAmisPayload": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopToAmisPaymentMethodPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopToAmisPaymentMethod($id: Int!, $data: JSON!) { updateShopToAmisPaymentMethod(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopToAmisPaymentMethod($id: Int!, $data: JSON!) { updateShopToAmisPaymentMethod(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopToAmisPaymentMethod": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopToAmisSourcePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopToAmisSource($id: Int!, $data: JSON!) { updateShopToAmisSource(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopToAmisSource($id: Int!, $data: JSON!) { updateShopToAmisSource(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopToAmisSource": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopToAmisWarehousePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopToAmisWarehouse($id: Int!, $data: JSON!) { updateShopToAmisWarehouse(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopToAmisWarehouse($id: Int!, $data: JSON!) { updateShopToAmisWarehouse(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopToAmisWarehouse": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopToMeinvoiceBranchPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopToMeinvoiceBranch($id: Int!, $data: JSON!) { updateShopToMeinvoiceBranch(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopToMeinvoiceBranch($id: Int!, $data: JSON!) { updateShopToMeinvoiceBranch(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopToMeinvoiceBranch": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopToMeinvoiceCarrierPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopToMeinvoiceCarrier($id: Int!, $data: JSON!) { updateShopToMeinvoiceCarrier(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopToMeinvoiceCarrier($id: Int!, $data: JSON!) { updateShopToMeinvoiceCarrier(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopToMeinvoiceCarrier": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopToMeinvoiceChannelPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopToMeinvoiceChannel($id: Int!, $data: JSON!) { updateShopToMeinvoiceChannel(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopToMeinvoiceChannel($id: Int!, $data: JSON!) { updateShopToMeinvoiceChannel(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopToMeinvoiceChannel": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopToMeinvoiceGatewayPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopToMeinvoiceGateway($id: Int!, $data: JSON!) { updateShopToMeinvoiceGateway(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopToMeinvoiceGateway($id: Int!, $data: JSON!) { updateShopToMeinvoiceGateway(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopToMeinvoiceGateway": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopToMeinvoicePayloadPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopToMeinvoicePayload($id: Int!, $data: JSON!) { updateShopToMeinvoicePayload(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopToMeinvoicePayload($id: Int!, $data: JSON!) { updateShopToMeinvoicePayload(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopToMeinvoicePayload": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopToMeinvoicePaymentMethodPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopToMeinvoicePaymentMethod($id: Int!, $data: JSON!) { updateShopToMeinvoicePaymentMethod(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopToMeinvoicePaymentMethod($id: Int!, $data: JSON!) { updateShopToMeinvoicePaymentMethod(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopToMeinvoicePaymentMethod": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopToMeinvoiceSourcePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopToMeinvoiceSource($id: Int!, $data: JSON!) { updateShopToMeinvoiceSource(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopToMeinvoiceSource($id: Int!, $data: JSON!) { updateShopToMeinvoiceSource(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopToMeinvoiceSource": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopToMeinvoiceWarehousePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopToMeinvoiceWarehouse($id: Int!, $data: JSON!) { updateShopToMeinvoiceWarehouse(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopToMeinvoiceWarehouse($id: Int!, $data: JSON!) { updateShopToMeinvoiceWarehouse(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopToMeinvoiceWarehouse": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopUnitPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopUnit($id: Int!, $data: JSON!) { updateShopUnit(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopUnit($id: Int!, $data: JSON!) { updateShopUnit(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopUnit": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopVariantPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopVariant($id: Int!, $data: JSON!) { updateShopVariant(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopVariant($id: Int!, $data: JSON!) { updateShopVariant(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopVariant": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopVariantTaxPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopVariantTax($id: Int!, $data: JSON!) { updateShopVariantTax(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopVariantTax($id: Int!, $data: JSON!) { updateShopVariantTax(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopVariantTax": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopVariantTranslationPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopVariantTranslation($id: Int!, $data: JSON!) { updateShopVariantTranslation(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopVariantTranslation($id: Int!, $data: JSON!) { updateShopVariantTranslation(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopVariantTranslation": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopVariantUnitPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopVariantUnit($id: Int!, $data: JSON!) { updateShopVariantUnit(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopVariantUnit($id: Int!, $data: JSON!) { updateShopVariantUnit(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopVariantUnit": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopVendorPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopVendor($id: Int!, $data: JSON!) { updateShopVendor(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopVendor($id: Int!, $data: JSON!) { updateShopVendor(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopVendor": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopWardPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopWard($id: Int!, $data: JSON!) { updateShopWard(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopWard($id: Int!, $data: JSON!) { updateShopWard(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopWard": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateShopWarehousePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateShopWarehouse($id: Int!, $data: JSON!) { updateShopWarehouse(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateShopWarehouse($id: Int!, $data: JSON!) { updateShopWarehouse(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateShopWarehouse": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
UpdateWardPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
data |
JSON! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_updateWard($id: Int!, $data: JSON!) { updateWard(id: $id, data: $data) { id } }
{
"data": {
"k": "v"
}
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_updateWard($id: Int!, $data: JSON!) { updateWard(id: $id, data: $data) { id } }", "variables": {"data": {"k": "v"}}}
HTTP 200 OK
{
"data": {
"updateWard": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteMediaPayload!
| name | type | details |
|---|---|---|
key_or_url |
String! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteMedia($key_or_url: String!) { deleteMedia(key_or_url: $key_or_url) { id } }
{
"key_or_url": "string"
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteMedia($key_or_url: String!) { deleteMedia(key_or_url: $key_or_url) { id } }", "variables": {"key_or_url": "string"}}
HTTP 200 OK
{
"data": {
"deleteMedia": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopAccessTokenPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopAccessToken($id: Int!) { deleteShopAccessToken(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopAccessToken($id: Int!) { deleteShopAccessToken(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopAccessToken": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopActionPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopAction($id: Int!) { deleteShopAction(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopAction($id: Int!) { deleteShopAction(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopAction": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopAttachmentPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopAttachment($id: Int!) { deleteShopAttachment(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopAttachment($id: Int!) { deleteShopAttachment(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopAttachment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopAttributePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopAttribute($id: Int!) { deleteShopAttribute(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopAttribute($id: Int!) { deleteShopAttribute(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopAttribute": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopAttributeGroupPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopAttributeGroup($id: Int!) { deleteShopAttributeGroup(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopAttributeGroup($id: Int!) { deleteShopAttributeGroup(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopAttributeGroup": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopBankPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopBank($id: Int!) { deleteShopBank(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopBank($id: Int!) { deleteShopBank(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopBank": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopBranchPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopBranch($id: Int!) { deleteShopBranch(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopBranch($id: Int!) { deleteShopBranch(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopBranch": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopBrandPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopBrand($id: Int!) { deleteShopBrand(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopBrand($id: Int!) { deleteShopBrand(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopBrand": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopCarrierPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopCarrier($id: Int!) { deleteShopCarrier(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopCarrier($id: Int!) { deleteShopCarrier(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopCarrier": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopChannelPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopChannel($id: Int!) { deleteShopChannel(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopChannel($id: Int!) { deleteShopChannel(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopChannel": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopChannelProviderPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopChannelProvider($id: Int!) { deleteShopChannelProvider(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopChannelProvider($id: Int!) { deleteShopChannelProvider(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopChannelProvider": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopCountryPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopCountry($id: Int!) { deleteShopCountry(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopCountry($id: Int!) { deleteShopCountry(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopCountry": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopCurrencyPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopCurrency($id: Int!) { deleteShopCurrency(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopCurrency($id: Int!) { deleteShopCurrency(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopCurrency": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopCustomerPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopCustomer($id: Int!) { deleteShopCustomer(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopCustomer($id: Int!) { deleteShopCustomer(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopCustomer": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopCustomerBillingAddressPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopCustomerBillingAddress($id: Int!) { deleteShopCustomerBillingAddress(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopCustomerBillingAddress($id: Int!) { deleteShopCustomerBillingAddress(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopCustomerBillingAddress": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopCustomerGroupPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopCustomerGroup($id: Int!) { deleteShopCustomerGroup(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopCustomerGroup($id: Int!) { deleteShopCustomerGroup(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopCustomerGroup": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopCustomerShippingAddressPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopCustomerShippingAddress($id: Int!) { deleteShopCustomerShippingAddress(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopCustomerShippingAddress($id: Int!) { deleteShopCustomerShippingAddress(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopCustomerShippingAddress": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopDescriptionJsonPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopDescriptionJson($id: Int!) { deleteShopDescriptionJson(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopDescriptionJson($id: Int!) { deleteShopDescriptionJson(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopDescriptionJson": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopDiscountCodePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopDiscountCode($id: Int!) { deleteShopDiscountCode(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopDiscountCode($id: Int!) { deleteShopDiscountCode(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopDiscountCode": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopDistrictPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopDistrict($id: Int!) { deleteShopDistrict(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopDistrict($id: Int!) { deleteShopDistrict(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopDistrict": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopFilterPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopFilter($id: Int!) { deleteShopFilter(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopFilter($id: Int!) { deleteShopFilter(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopFilter": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopGatewayPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopGateway($id: Int!) { deleteShopGateway(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopGateway($id: Int!) { deleteShopGateway(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopGateway": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopInventoryAdjustmentPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopInventoryAdjustment($id: Int!) { deleteShopInventoryAdjustment(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopInventoryAdjustment($id: Int!) { deleteShopInventoryAdjustment(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopInventoryAdjustment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopInventoryAdjustmentLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopInventoryAdjustmentLine($id: Int!) { deleteShopInventoryAdjustmentLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopInventoryAdjustmentLine($id: Int!) { deleteShopInventoryAdjustmentLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopInventoryAdjustmentLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopInventoryTransferPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopInventoryTransfer($id: Int!) { deleteShopInventoryTransfer(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopInventoryTransfer($id: Int!) { deleteShopInventoryTransfer(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopInventoryTransfer": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopInventoryTransferLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopInventoryTransferLine($id: Int!) { deleteShopInventoryTransferLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopInventoryTransferLine($id: Int!) { deleteShopInventoryTransferLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopInventoryTransferLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopLicensePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopLicense($id: Int!) { deleteShopLicense(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopLicense($id: Int!) { deleteShopLicense(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopLicense": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopMediaPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopMedia($id: Int!) { deleteShopMedia(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopMedia($id: Int!) { deleteShopMedia(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopMedia": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopMediaCategoryPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopMediaCategory($id: Int!) { deleteShopMediaCategory(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopMediaCategory($id: Int!) { deleteShopMediaCategory(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopMediaCategory": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopMediaProductPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopMediaProduct($id: Int!) { deleteShopMediaProduct(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopMediaProduct($id: Int!) { deleteShopMediaProduct(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopMediaProduct": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopMediaVariantPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopMediaVariant($id: Int!) { deleteShopMediaVariant(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopMediaVariant($id: Int!) { deleteShopMediaVariant(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopMediaVariant": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopMetaDataPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopMetaData($id: Int!) { deleteShopMetaData(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopMetaData($id: Int!) { deleteShopMetaData(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopMetaData": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopOrderPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopOrder($id: Int!) { deleteShopOrder(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopOrder($id: Int!) { deleteShopOrder(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopOrderFulfillmentPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopOrderFulfillment($id: Int!) { deleteShopOrderFulfillment(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopOrderFulfillment($id: Int!) { deleteShopOrderFulfillment(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopOrderFulfillment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopPaymentMethodPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopPaymentMethod($id: Int!) { deleteShopPaymentMethod(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopPaymentMethod($id: Int!) { deleteShopPaymentMethod(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopPaymentMethod": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopPaymentMethodGatewayPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopPaymentMethodGateway($id: Int!) { deleteShopPaymentMethodGateway(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopPaymentMethodGateway($id: Int!) { deleteShopPaymentMethodGateway(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopPaymentMethodGateway": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopPreOrderPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopPreOrder($id: Int!) { deleteShopPreOrder(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopPreOrder($id: Int!) { deleteShopPreOrder(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopPreOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopPreOrderLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopPreOrderLine($id: Int!) { deleteShopPreOrderLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopPreOrderLine($id: Int!) { deleteShopPreOrderLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopPreOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopPrePurchaseOrderPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopPrePurchaseOrder($id: Int!) { deleteShopPrePurchaseOrder(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopPrePurchaseOrder($id: Int!) { deleteShopPrePurchaseOrder(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopPrePurchaseOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopPrePurchaseOrderLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopPrePurchaseOrderLine($id: Int!) { deleteShopPrePurchaseOrderLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopPrePurchaseOrderLine($id: Int!) { deleteShopPrePurchaseOrderLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopPrePurchaseOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopPrintTemplatePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopPrintTemplate($id: Int!) { deleteShopPrintTemplate(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopPrintTemplate($id: Int!) { deleteShopPrintTemplate(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopPrintTemplate": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopPrivateMetadataPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopPrivateMetadata($id: Int!) { deleteShopPrivateMetadata(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopPrivateMetadata($id: Int!) { deleteShopPrivateMetadata(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopPrivateMetadata": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopProductPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopProduct($id: Int!) { deleteShopProduct(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopProduct($id: Int!) { deleteShopProduct(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopProduct": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopProductCategoryPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopProductCategory($id: Int!) { deleteShopProductCategory(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopProductCategory($id: Int!) { deleteShopProductCategory(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopProductCategory": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopProductCategoryChannelPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopProductCategoryChannel($id: Int!) { deleteShopProductCategoryChannel(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopProductCategoryChannel($id: Int!) { deleteShopProductCategoryChannel(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopProductCategoryChannel": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopProductChannelPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopProductChannel($id: Int!) { deleteShopProductChannel(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopProductChannel($id: Int!) { deleteShopProductChannel(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopProductChannel": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopProductItemPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopProductItem($id: Int!) { deleteShopProductItem(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopProductItem($id: Int!) { deleteShopProductItem(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopProductItem": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopPromotionPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopPromotion($id: Int!) { deleteShopPromotion(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopPromotion($id: Int!) { deleteShopPromotion(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopPromotion": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopProviderPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopProvider($id: Int!) { deleteShopProvider(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopProvider($id: Int!) { deleteShopProvider(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopProvider": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopProvincePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopProvince($id: Int!) { deleteShopProvince(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopProvince($id: Int!) { deleteShopProvince(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopProvince": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopPurchaseOrderPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopPurchaseOrder($id: Int!) { deleteShopPurchaseOrder(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopPurchaseOrder($id: Int!) { deleteShopPurchaseOrder(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopPurchaseOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopPurchaseOrderFulfillmentPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopPurchaseOrderFulfillment($id: Int!) { deleteShopPurchaseOrderFulfillment(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopPurchaseOrderFulfillment($id: Int!) { deleteShopPurchaseOrderFulfillment(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopPurchaseOrderFulfillment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopPurchaseOrderFulfillmentLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopPurchaseOrderFulfillmentLine($id: Int!) { deleteShopPurchaseOrderFulfillmentLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopPurchaseOrderFulfillmentLine($id: Int!) { deleteShopPurchaseOrderFulfillmentLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopPurchaseOrderFulfillmentLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopPurchaseOrderLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopPurchaseOrderLine($id: Int!) { deleteShopPurchaseOrderLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopPurchaseOrderLine($id: Int!) { deleteShopPurchaseOrderLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopPurchaseOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopPurchaseReturnOrderPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopPurchaseReturnOrder($id: Int!) { deleteShopPurchaseReturnOrder(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopPurchaseReturnOrder($id: Int!) { deleteShopPurchaseReturnOrder(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopPurchaseReturnOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopPurchaseReturnOrderFulfillmentPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopPurchaseReturnOrderFulfillment($id: Int!) { deleteShopPurchaseReturnOrderFulfillment(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopPurchaseReturnOrderFulfillment($id: Int!) { deleteShopPurchaseReturnOrderFulfillment(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopPurchaseReturnOrderFulfillment": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopPurchaseReturnOrderFulfillmentLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopPurchaseReturnOrderFulfillmentLine($id: Int!) { deleteShopPurchaseReturnOrderFulfillmentLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopPurchaseReturnOrderFulfillmentLine($id: Int!) { deleteShopPurchaseReturnOrderFulfillmentLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopPurchaseReturnOrderFulfillmentLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopPurchaseReturnOrderLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopPurchaseReturnOrderLine($id: Int!) { deleteShopPurchaseReturnOrderLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopPurchaseReturnOrderLine($id: Int!) { deleteShopPurchaseReturnOrderLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopPurchaseReturnOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopReportTemplatePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopReportTemplate($id: Int!) { deleteShopReportTemplate(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopReportTemplate($id: Int!) { deleteShopReportTemplate(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopReportTemplate": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopReturnOrderPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopReturnOrder($id: Int!) { deleteShopReturnOrder(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopReturnOrder($id: Int!) { deleteShopReturnOrder(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopReturnOrder": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopReturnOrderLinePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopReturnOrderLine($id: Int!) { deleteShopReturnOrderLine(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopReturnOrderLine($id: Int!) { deleteShopReturnOrderLine(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopReturnOrderLine": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopScopePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopScope($id: Int!) { deleteShopScope(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopScope($id: Int!) { deleteShopScope(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopScope": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopSourcePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopSource($id: Int!) { deleteShopSource(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopSource($id: Int!) { deleteShopSource(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopSource": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopSupplierPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopSupplier($id: Int!) { deleteShopSupplier(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopSupplier($id: Int!) { deleteShopSupplier(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopSupplier": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopTagPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopTag($id: Int!) { deleteShopTag(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopTag($id: Int!) { deleteShopTag(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopTag": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopTaxPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopTax($id: Int!) { deleteShopTax(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopTax($id: Int!) { deleteShopTax(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopTax": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopUnitPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopUnit($id: Int!) { deleteShopUnit(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopUnit($id: Int!) { deleteShopUnit(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopUnit": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopVariantPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopVariant($id: Int!) { deleteShopVariant(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopVariant($id: Int!) { deleteShopVariant(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopVariant": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopVariantTaxPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopVariantTax($id: Int!) { deleteShopVariantTax(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopVariantTax($id: Int!) { deleteShopVariantTax(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopVariantTax": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopVariantUnitPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopVariantUnit($id: Int!) { deleteShopVariantUnit(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopVariantUnit($id: Int!) { deleteShopVariantUnit(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopVariantUnit": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopVendorPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopVendor($id: Int!) { deleteShopVendor(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopVendor($id: Int!) { deleteShopVendor(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopVendor": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopWardPayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopWard($id: Int!) { deleteShopWard(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopWard($id: Int!) { deleteShopWard(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopWard": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
DeleteShopWarehousePayload!
| name | type | details |
|---|---|---|
id |
Int! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_deleteShopWarehouse($id: Int!) { deleteShopWarehouse(id: $id) { id } }
{
"id": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_deleteShopWarehouse($id: Int!) { deleteShopWarehouse(id: $id) { id } }", "variables": {"id": 1}}
HTTP 200 OK
{
"data": {
"deleteShopWarehouse": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
LoginResult!
| name | type | details |
|---|---|---|
email |
String! | Required |
password |
String! | Required |
otpCode |
String |
Optional
OTP code (6 digits) when 2FA enabled
|
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com
mutation Mutation_shopLogin($email: String!, $password: String!, $otpCode: String) { shopLogin(email: $email, password: $password, otpCode: $otpCode) { id } }
{
"email": "string"
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-d {"query": "mutation Mutation_shopLogin($email: String!, $password: String!, $otpCode: String) { shopLogin(email: $email, password: $password, otpCode: $otpCode) { id } }", "variables": {"email": "string"}}
HTTP 200 OK
{
"data": {
"shopLogin": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
LoginResult!
| name | type | details |
|---|---|---|
refreshToken |
String! | Required |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com
mutation Mutation_shopRefreshToken($refreshToken: String!) { shopRefreshToken(refreshToken: $refreshToken) { id } }
{
"refreshToken": "string"
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-d {"query": "mutation Mutation_shopRefreshToken($refreshToken: String!) { shopRefreshToken(refreshToken: $refreshToken) { id } }", "variables": {"refreshToken": "string"}}
HTTP 200 OK
{
"data": {
"shopRefreshToken": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
AssignShopChannelProviderPayload!
| name | type | details |
|---|---|---|
channelId |
Int! |
Required
Channel ID
|
providerId |
Int! |
Required
Provider ID
|
providerCode |
String! |
Required
Provider code (shop, haravan, amis, etc.)
|
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_assignChannelProvider($channelId: Int!, $providerId: Int!, $providerCode: String!) { assignChannelProvider(channelId: $channelId, providerId: $providerId, providerCode: $providerCode) { id } }
{
"channelId": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_assignChannelProvider($channelId: Int!, $providerId: Int!, $providerCode: String!) { assignChannelProvider(channelId: $channelId, providerId: $providerId, providerCode: $providerCode) { id } }", "variables": {"channelId": 1}}
HTTP 200 OK
{
"data": {
"assignChannelProvider": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
AttachmentCreatePayload!
| name | type | details |
|---|---|---|
media |
Upload! | Required |
entity |
String! | Required |
entity_id |
Int! | Required |
title |
String | Optional |
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_attachmentCreate($media: Upload!, $entity: String!, $entity_id: Int!, $title: String) { attachmentCreate(media: $media, entity: $entity, entity_id: $entity_id, title: $title) { id } }
{
"media": "string"
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_attachmentCreate($media: Upload!, $entity: String!, $entity_id: Int!, $title: String) { attachmentCreate(media: $media, entity: $entity, entity_id: $entity_id, title: $title) { id } }", "variables": {"media": "string"}}
HTTP 200 OK
{
"data": {
"attachmentCreate": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
ShopPopulatePayload!
| name | type | details |
|---|---|---|
entities |
[String!]! |
Required
List of entity names to populate (branch, warehouse, channel, currency, tax, unit, locations)
|
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_shopPopulate($entities: [String!]!) { shopPopulate(entities: $entities) { id } }
{
"entities": [
"string"
]
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_shopPopulate($entities: [String!]!) { shopPopulate(entities: $entities) { id } }", "variables": {"entities": ["string"]}}
HTTP 200 OK
{
"data": {
"shopPopulate": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}
AssignShopChannelProviderPayload!
| name | type | details |
|---|---|---|
channelId |
Int! |
Required
Channel ID
|
providerCode |
String! |
Required
Provider code (shop, haravan, amis, etc.)
|
Content-Type: application/json x-gennova-domain: your-slug.mygennova.com x-gennova-dashboard-access-token: <access_token>
mutation Mutation_unassignChannelProvider($channelId: Int!, $providerCode: String!) { unassignChannelProvider(channelId: $channelId, providerCode: $providerCode) { id } }
{
"channelId": 1
}
curl -X POST "https://graphql.gennovadev.com/v1" \
-H "Content-Type: application/json" \
-H "x-gennova-domain: your-slug.mygennova.com" \
-H "x-gennova-dashboard-access-token: <access_token>" \
-d {"query": "mutation Mutation_unassignChannelProvider($channelId: Int!, $providerCode: String!) { unassignChannelProvider(channelId: $channelId, providerCode: $providerCode) { id } }", "variables": {"channelId": 1}}
HTTP 200 OK
{
"data": {
"unassignChannelProvider": null
},
"extensions": {
"request_id": "req_xxx",
"timing_ms": {
"total": 12
}
}
}