Current section
Files
Jump to
Current section
Files
lib/ex_shopify_schema/graphql/menu.ex
defmodule ExShopifySchema.Graphql.Menu do
@moduledoc "A menu for display on the storefront."
use ExShopifySchema.Generator.Graphql.Schema
@primary_key false
typed_embedded_schema do
loadable_field :handle, ExShopifySchema.Graphql.String, []
loadable_field :id, ExShopifySchema.Graphql.ID, []
loadable_field :is_default, ExShopifySchema.Graphql.Boolean, []
embeds_many :items, ExShopifySchema.Graphql.MenuItem, []
loadable_field :title, ExShopifySchema.Graphql.String, []
embeds_many :translations, ExShopifySchema.Graphql.Translation, []
end
end