Graph Ql

From magento 2.3.x you can use GraphQl on magento 2.

For our module you should setup graphql module at here: https://github.com/landofcoder/module-marketplace-graphql

Queries

  1. Get Seller Profile Info By Id

{
    lofSellerById(seller_id: Int!) {
        address
        banner_pic
        city
        company_description
        company_locality
        contact_number
        country
        customer_id
        email
        gplus_active
        gplus_id
        group
        image
        name
        page_layout
        region
        return_policy
        sale
        seller_id
        shipping_policy
        shop_title
        status
        store_id
        thumbnail
        seller_rates {
            items {
                created_at
                customer_id
                detail
                email
                nickname
                rate1
                rate2
                rate3
                rating_id
                seller_id
                status
                title
            }
            total_count
        }
  }
}
  1. Get List Sellers with Filter options

  1. Filter products by seller ID

Last updated

Was this helpful?