Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

class ShopifyCli::PartnersAPI

Tim Anema edited this page Apr 23, 2020 · 11 revisions

ShopifyCli::PartnersAPI provides easy access to the partners dashboard CLI schema.

Constants

  • LOCAL_DEBUG Defines the environment variable that this API looks for to operate on local services. If you set this environment variable in your shell then the partners api will operation on your local instance

Example

SHOPIFY_APP_CLI_LOCAL_PARTNERS=1 shopify create

Class Methods

query

query(ctx, query_name, **variables) issues a graphql query or mutation to the Shopify Partners Dashboard CLI Schema. It loads a graphql query from a file so that you do not need to use large unwieldy query strings. It also handles authentication for you as well.

Parameters

  • ctx: running context from your command
  • query_name: name of the query you want to use, loaded from the lib/graphql directory.
  • **variable: a hash of variables to be supplied to the query ro mutation

Raises

  • http 404 will raise a ShopifyCli::API::APIRequestNotFoundError
  • http 400..499 will raise a ShopifyCli::API::APIRequestClientError
  • http 500..599 will raise a ShopifyCli::API::APIRequestServerError
  • All other codes will raise ShopifyCli::API::APIRequestUnexpectedError

Returns

  • resp - graphql response data hash. This can be a different shape for every query.

Example

ShopifyCli::PartnersAPI.query(@ctx, 'all_organizations')
see source

# File lib/shopify-cli/partners_api.rb, line 47
def query(ctx, query_name, **variables)
  authenticated_req(ctx) do
    api_client(ctx).query(query_name, variables: variables)
  end
end

Instance Methods

auth_headers

auth_headers(token)

see source

# File lib/shopify-cli/partners_api.rb, line 113
def auth_headers(token)
  { Authorization: "Bearer #{token}" }
end

Clone this wiki locally