Skip to content

Commit 1186ab7

Browse files
committed
updated readme
1 parent 4162989 commit 1186ab7

File tree

1 file changed

+56
-2
lines changed

1 file changed

+56
-2
lines changed

README.md

Lines changed: 56 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,62 @@ magento 2 marketplace graphql extension
3535
- apply database updates by running `php bin/magento setup:upgrade`\*
3636
- Flush the cache by running `php bin/magento cache:flush`
3737

38-
39-
## Configuration
38+
### TODO
39+
- Refactor Graphql queries
40+
- Refactor Resolvers
41+
- Add documendation for Graphql queries
42+
43+
## Queries
44+
45+
1. Get Seller Profile Info By Id
46+
47+
```
48+
{
49+
lofSellerById(seller_id: Int!) {
50+
address
51+
banner_pic
52+
city
53+
commission_id
54+
company_description
55+
company_locality
56+
contact_number
57+
country
58+
customer_id
59+
email
60+
gplus_active
61+
gplus_id
62+
group
63+
image
64+
name
65+
page_layout
66+
region
67+
return_policy
68+
sale
69+
seller_id
70+
shipping_policy
71+
shop_title
72+
status
73+
store_id
74+
thumbnail
75+
seller_rates {
76+
items {
77+
created_at
78+
customer_id
79+
detail
80+
email
81+
nickname
82+
rate1
83+
rate2
84+
rate3
85+
rating_id
86+
seller_id
87+
status
88+
title
89+
}
90+
total_count
91+
}
92+
}
93+
}
4094
4195
4296

0 commit comments

Comments
 (0)