Requests all resources
Requests the resource count
Requests all resources.
Returns {:ok, [resources]} or {:error, %Shopify.Error{}}
{:ok, [resources]}
{:error, %Shopify.Error{}}
%Shopify.Session{}
iex> Shopify.session |> Shopify.Product.all {:ok, [%Shopify.Product{}]}
Requests the resource count.
Returns {:ok, integer} or {:error, %Shopify.Error{}}
{:ok, integer}
iex> Shopify.session |> Shopify.Product.count {:ok, 1}