Class: ShopifyGraphql::Shop

Inherits:
Object
  • Object
show all
Includes:
Resource
Defined in:
lib/shopify_graphql/resources/shop.rb

Class Method Summary collapse

Class Method Details

.currentObject



6
7
8
9
10
11
12
13
14
15
16
17
18
# File 'lib/shopify_graphql/resources/shop.rb', line 6

def current
  execute <<~GRAPHQL
    query {
      shop {
        id
        name
        myshopifyDomain
        description
        plan { displayName }
      }
    }
  GRAPHQL
end