Current section
Files
Jump to
Current section
Files
lib/ex_shopify_schema/graphql/domain.ex
defmodule ExShopifySchema.Graphql.Domain do
@moduledoc "A unique string that represents the address of a Shopify store on the Internet."
use ExShopifySchema.Generator.Graphql.Schema
@primary_key false
typed_embedded_schema do
loadable_field :host, ExShopifySchema.Graphql.String, []
loadable_field :id, ExShopifySchema.Graphql.ID, []
embeds_one :localization, ExShopifySchema.Graphql.DomainLocalization, []
embeds_one :market_web_presence, ExShopifySchema.Graphql.MarketWebPresence, []
loadable_field :ssl_enabled, ExShopifySchema.Graphql.Boolean, []
loadable_field :url, ExShopifySchema.Graphql.URL, []
end
end