2020-01-26 20:34:25 +01:00
|
|
|
defmodule Mobilizon.GraphQL.Schema.SearchType do
|
2019-04-12 15:04:32 +02:00
|
|
|
@moduledoc """
|
|
|
|
Schema representation for Search
|
|
|
|
"""
|
|
|
|
use Absinthe.Schema.Notation
|
|
|
|
|
2020-11-06 11:34:32 +01:00
|
|
|
alias Mobilizon.Actors.Actor
|
|
|
|
alias Mobilizon.Events.Event
|
2020-01-26 20:34:25 +01:00
|
|
|
alias Mobilizon.GraphQL.Resolvers.Search
|
2019-04-12 15:04:32 +02:00
|
|
|
|
|
|
|
@desc "Search persons result"
|
|
|
|
object :persons do
|
|
|
|
field(:total, non_null(:integer), description: "Total elements")
|
|
|
|
field(:elements, non_null(list_of(:person)), description: "Person elements")
|
|
|
|
end
|
|
|
|
|
|
|
|
@desc "Search groups result"
|
|
|
|
object :groups do
|
|
|
|
field(:total, non_null(:integer), description: "Total elements")
|
|
|
|
field(:elements, non_null(list_of(:group)), description: "Group elements")
|
|
|
|
end
|
|
|
|
|
|
|
|
@desc "Search events result"
|
|
|
|
object :events do
|
|
|
|
field(:total, non_null(:integer), description: "Total elements")
|
|
|
|
field(:elements, non_null(list_of(:event)), description: "Event elements")
|
|
|
|
end
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
@desc """
|
|
|
|
A entity that can be interacted with from a remote instance
|
|
|
|
"""
|
2020-11-06 11:34:32 +01:00
|
|
|
interface :interactable do
|
|
|
|
field(:url, :string, description: "A public URL for the entity")
|
|
|
|
|
|
|
|
resolve_type(fn
|
|
|
|
%Actor{type: :Group}, _ ->
|
|
|
|
:group
|
|
|
|
|
|
|
|
%Event{}, _ ->
|
|
|
|
:event
|
|
|
|
|
|
|
|
_, _ ->
|
|
|
|
nil
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2021-11-06 14:37:45 +01:00
|
|
|
enum :event_type do
|
|
|
|
value(:in_person,
|
|
|
|
description:
|
|
|
|
"The event will happen in person. It can also be livestreamed, but has a physical address"
|
|
|
|
)
|
|
|
|
|
|
|
|
value(:online, description: "The event will only happen online. It has no physical address")
|
|
|
|
end
|
|
|
|
|
2019-04-12 15:04:32 +02:00
|
|
|
object :search_queries do
|
|
|
|
@desc "Search persons"
|
|
|
|
field :search_persons, :persons do
|
2020-11-19 17:06:28 +01:00
|
|
|
arg(:term, :string, default_value: "", description: "Search term")
|
|
|
|
arg(:page, :integer, default_value: 1, description: "Result page")
|
|
|
|
arg(:limit, :integer, default_value: 10, description: "Results limit per page")
|
2019-04-12 15:04:32 +02:00
|
|
|
|
2020-01-26 20:34:25 +01:00
|
|
|
resolve(&Search.search_persons/3)
|
2019-04-12 15:04:32 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
@desc "Search groups"
|
|
|
|
field :search_groups, :groups do
|
2020-11-19 17:06:28 +01:00
|
|
|
arg(:term, :string, default_value: "", description: "Search term")
|
2020-08-05 16:44:08 +02:00
|
|
|
arg(:location, :string, description: "A geohash for coordinates")
|
2020-11-19 17:06:28 +01:00
|
|
|
|
2021-11-06 10:09:54 +01:00
|
|
|
arg(:exclude_my_groups, :boolean,
|
|
|
|
description: "Whether to include the groups the current actor is member or follower"
|
|
|
|
)
|
|
|
|
|
|
|
|
arg(:minimum_visibility, :group_visibility,
|
|
|
|
description: "The minimum visibility the group must have"
|
|
|
|
)
|
|
|
|
|
2020-11-19 17:06:28 +01:00
|
|
|
arg(:radius, :float,
|
|
|
|
default_value: 50,
|
|
|
|
description: "Radius around the location to search in"
|
|
|
|
)
|
|
|
|
|
|
|
|
arg(:page, :integer, default_value: 1, description: "Result page")
|
|
|
|
arg(:limit, :integer, default_value: 10, description: "Results limit per page")
|
2019-04-12 15:04:32 +02:00
|
|
|
|
2020-01-26 20:34:25 +01:00
|
|
|
resolve(&Search.search_groups/3)
|
2019-04-12 15:04:32 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
@desc "Search events"
|
|
|
|
field :search_events, :events do
|
2020-07-31 17:52:26 +02:00
|
|
|
arg(:term, :string, default_value: "")
|
2020-08-03 17:34:50 +02:00
|
|
|
arg(:tags, :string, description: "A comma-separated string listing the tags")
|
2020-07-31 17:52:26 +02:00
|
|
|
arg(:location, :string, description: "A geohash for coordinates")
|
2021-11-06 14:37:45 +01:00
|
|
|
arg(:type, :event_type, description: "Whether the event is online or in person")
|
2020-11-19 17:06:28 +01:00
|
|
|
|
|
|
|
arg(:radius, :float,
|
|
|
|
default_value: 50,
|
|
|
|
description: "Radius around the location to search in"
|
|
|
|
)
|
|
|
|
|
|
|
|
arg(:page, :integer, default_value: 1, description: "Result page")
|
|
|
|
arg(:limit, :integer, default_value: 10, description: "Results limit per page")
|
|
|
|
arg(:begins_on, :datetime, description: "Filter events by their start date")
|
|
|
|
arg(:ends_on, :datetime, description: "Filter events by their end date")
|
2019-04-12 15:04:32 +02:00
|
|
|
|
2020-01-26 20:34:25 +01:00
|
|
|
resolve(&Search.search_events/3)
|
2019-04-12 15:04:32 +02:00
|
|
|
end
|
2020-11-06 11:34:32 +01:00
|
|
|
|
|
|
|
@desc "Interact with an URI"
|
|
|
|
field :interact, :interactable do
|
|
|
|
arg(:uri, non_null(:string), description: "The URI for to interact with")
|
|
|
|
|
|
|
|
resolve(&Search.interact/3)
|
|
|
|
end
|
2019-04-12 15:04:32 +02:00
|
|
|
end
|
|
|
|
end
|