289ba03960
An event can indeed have several address types Signed-off-by: Thomas Citharel <tcit@tcit.fr>
40 lines
1.1 KiB
Elixir
40 lines
1.1 KiB
Elixir
defmodule MobilizonWeb.Schema.AddressType do
|
|
@moduledoc """
|
|
Schema representation for Address
|
|
"""
|
|
use Absinthe.Schema.Notation
|
|
|
|
object :physical_address do
|
|
field(:type, :address_type)
|
|
field(:geom, :point)
|
|
field(:floor, :string)
|
|
field(:streetAddress, :string)
|
|
field(:addressLocality, :string)
|
|
field(:postalCode, :string)
|
|
field(:addressRegion, :string)
|
|
field(:addressCountry, :string)
|
|
field(:description, :string)
|
|
field(:name, :string)
|
|
end
|
|
|
|
object :phone_address do
|
|
field(:type, :address_type)
|
|
field(:phone, :string)
|
|
field(:info, :string)
|
|
end
|
|
|
|
object :online_address do
|
|
field(:type, :address_type)
|
|
field(:url, :string)
|
|
field(:info, :string)
|
|
end
|
|
|
|
@desc "The list of types an address can be"
|
|
enum :address_type do
|
|
value(:physical, description: "The address is physical, like a postal address")
|
|
value(:url, description: "The address is on the Web, like an URL")
|
|
value(:phone, description: "The address is a phone number for a conference")
|
|
value(:other, description: "The address is something else")
|
|
end
|
|
end
|