Current section
Files
Jump to
Current section
Files
lib/ex_shopify_schema/graphql/link.ex
defmodule ExShopifySchema.Graphql.Link do
@moduledoc "A link to direct users to."
use ExShopifySchema.Generator.Graphql.Schema
@primary_key false
typed_embedded_schema do
loadable_field :label, ExShopifySchema.Graphql.String, []
embeds_many :translations, ExShopifySchema.Graphql.Translation, []
loadable_field :url, ExShopifySchema.Graphql.URL, []
end
end