Arguments
locationId
Int!Required
Unique identifier for store.
Response
custom_json
JSONCustom JSON data related to the store.
address
StoreAddressSerializerThe address details of the store.
company
CompanyStoreInformation about the company that owns the store.
contact_numbers
[StorePhoneNumber]Contact details for the store.
departments
[StoreDepartment]A list of departments within the store.
manager
StoreManagerSerializerThe manager's email address for the store.
name
StringThe name of the store.
store_code
StringA unique code or identifier for the store, often used for internal reference.
timing
[StoreTiming]Represents the opening and closing times for a store on a specific weekday.
uid
IntUnique identifier for the store.
Query
1query store($locationId: Int!) {2 store(locationId: $locationId) {3 custom_json4 address {5 address16 address27 city8 country9 landmark10 latitude11 longitude12 pincode13 state14 }15 company {16 business_type17 company_type18 name19 uid20 }21 contact_numbers {22 country_code23 number24 }25 departments {26 uid27 logo28 priority_order29 name30 slug31 }32 manager {33 email34 name35 }36 name37 store_code38 timing {39 open40 weekday41 }42 uid43 }44}
Try it
Input Variables
1{2 "locationId": 423}
Response
1{2 "store": {3 "custom_json": {},4 "address": {5 "address1": "address1",6 "address2": "address2",7 "city": "Montreal",8 "country": "Canada",9 "landmark": "landmark",10 "latitude": 30.7,11 "longitude": 30.7,12 "pincode": 42,13 "state": "Quebec"14 },15 "company": {16 "business_type": "business_type",17 "company_type": "company_type",18 "name": "A name",19 "uid": 4220 },21 "contact_numbers": [22 {23 "country_code": 42,24 "number": "number"25 }26 ],27 "departments": [28 {29 "uid": 42,30 "logo": {},31 "priority_order": 42,32 "name": "A name",33 "slug": "slug"34 }35 ],36 "manager": {37 "email": "[email protected]",38 "name": "A name"39 },40 "name": "A name",41 "store_code": "store_code",42 "timing": [43 {44 "open": true,45 "weekday": "weekday"46 }47 ],48 "uid": 4249 }50}
Was this section helpful?