forked from ash-project/ash_graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinfo.ex
More file actions
237 lines (199 loc) · 7.45 KB
/
info.ex
File metadata and controls
237 lines (199 loc) · 7.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
defmodule AshGraphql.Resource.Info do
@moduledoc "Introspection helpers for AshGraphql.Resource"
alias Spark.Dsl.Extension
@doc "The queries exposed for the resource"
def queries(resource, domain_or_domains \\ []) do
module =
if is_atom(resource) do
resource
else
Spark.Dsl.Extension.get_persisted(resource, :module)
end
domain_or_domains
|> List.wrap()
|> Enum.flat_map(&AshGraphql.Domain.Info.queries/1)
|> Enum.filter(&(&1.resource == module))
|> Enum.concat(Extension.get_entities(resource, [:graphql, :queries]))
end
@doc "The mutations exposed for the resource"
def mutations(resource, domain_or_domains \\ []) do
module =
if is_atom(resource) do
resource
else
Spark.Dsl.Extension.get_persisted(resource, :module)
end
domain_or_domains
|> List.wrap()
|> Enum.flat_map(&AshGraphql.Domain.Info.mutations/1)
|> Enum.filter(&(&1.resource == module))
|> Enum.concat(Extension.get_entities(resource, [:graphql, :mutations]) || [])
end
@doc "The subscriptions exposed for the resource"
def subscriptions(resource, domain_or_domains \\ []) do
module =
if is_atom(resource) do
resource
else
Spark.Dsl.Extension.get_persisted(resource, :module)
end
domain_or_domains
|> List.wrap()
|> Enum.flat_map(&AshGraphql.Domain.Info.subscriptions/1)
|> Enum.filter(&(&1.resource == module))
|> Enum.concat(Extension.get_entities(resource, [:graphql, :subscriptions]) || [])
end
@doc "The pubsub module used for subscriptions"
def subscription_pubsub(resource) do
Extension.get_opt(resource, [:graphql, :subscriptions], :pubsub)
end
@doc "Wether or not to encode the primary key as a single `id` field when reading and getting"
def encode_primary_key?(resource) do
Extension.get_opt(resource, [:graphql], :encode_primary_key?, true)
end
@doc "The managed_relationship configurations"
def managed_relationships(resource) do
Extension.get_entities(resource, [:graphql, :managed_relationships]) || []
end
def managed_relationships_auto?(resource) do
Extension.get_opt(resource, [:graphql, :managed_relationships], :auto?, true)
end
@doc "The managed_relationshi configuration for a given action/argument"
def managed_relationship(resource, action, argument) do
resource
|> Extension.get_entities([:graphql, :managed_relationships])
|> List.wrap()
|> Enum.find(fn managed_relationship ->
managed_relationship.argument == argument.name and
managed_relationship.action == action.name
end)
|> then(fn managed_relationship ->
if managed_relationship && managed_relationship.ignore? do
nil
else
if managed_relationships_auto?(resource) do
managed_relationship || default_managed_relationship(action, argument)
else
managed_relationship
end
end
end)
end
defp default_managed_relationship(action, argument) do
if Enum.any?(Map.get(action, :changes, []), fn
%{change: {Ash.Resource.Change.ManageRelationship, opts}} ->
opts[:argument] == argument.name
_ ->
nil
end) && map_type?(argument.type) do
%AshGraphql.Resource.ManagedRelationship{
argument: argument.name,
action: action,
types: [],
type_name: nil,
lookup_with_primary_key?: true,
lookup_identities: []
}
end
end
defp map_type?({:array, type}), do: map_type?(type)
defp map_type?(Ash.Type.Map), do: true
defp map_type?(:map), do: true
defp map_type?(_), do: false
@doc "The graphql type of the resource"
def type(resource) do
Extension.get_opt(resource, [:graphql], :type, nil)
end
@doc "Wether or not to derive a filter input for the resource automatically"
def derive_filter?(resource) do
Extension.get_opt(resource, [:graphql], :derive_filter?, true)
end
@doc "Wether or not to derive a sort input for the resource automatically"
def derive_sort?(resource) do
Extension.get_opt(resource, [:graphql], :derive_sort?, true)
end
@doc "Graphql type overrides for the resource"
def attribute_types(resource) do
Extension.get_opt(resource, [:graphql], :attribute_types, [])
end
@doc "Graphql nullability overrides for the resource"
def nullable_fields(resource) do
Extension.get_opt(resource, [:graphql], :nullable_fields, [])
end
@doc "The field name to place the keyset of a result in"
def keyset_field(resource) do
Extension.get_opt(resource, [:graphql], :keyset_field, nil)
end
@doc "Graphql field name (attribute/relationship/calculation/arguments) overrides for the resource"
def field_names(resource) do
Extension.get_opt(resource, [:graphql], :field_names, [])
end
@doc "Fields to hide from the graphql domain"
def hide_fields(resource) do
Extension.get_opt(resource, [:graphql], :hide_fields, [])
end
@doc "Fields to show in the graphql domain"
def show_fields(resource) do
Extension.get_opt(resource, [:graphql], :show_fields, nil)
end
@doc "Wether or not a given field will be shown"
def show_field?(resource, field) do
hide_fields = hide_fields(resource)
show_fields = show_fields(resource) || [field]
field not in hide_fields and field in show_fields
end
@doc "Which relationships should be included in the generated type"
def relationships(resource) do
Extension.get_opt(resource, [:graphql], :relationships, nil) ||
resource |> Ash.Resource.Info.public_relationships() |> Enum.map(& &1.name)
end
@doc "Pagination configuration for list relationships"
def paginate_relationship_with(resource) do
Extension.get_opt(resource, [:graphql], :paginate_relationship_with, [])
end
@doc "Graphql argument name overrides for the resource"
def argument_names(resource) do
Extension.get_opt(resource, [:graphql], :argument_names, [])
end
@doc "Graphql attribute input type overrides for the resource"
def attribute_input_types(resource) do
Extension.get_opt(resource, [:graphql], :attribute_input_types, [])
end
@doc "Graphql argument type overrides for the resource"
def argument_input_types(resource) do
Extension.get_opt(resource, [:graphql], :argument_input_types, [])
end
@doc "The delimiter for a resource with a composite primary key"
def primary_key_delimiter(resource) do
Extension.get_opt(resource, [:graphql], :primary_key_delimiter, "-")
end
@doc "Wether or not an object should be generated, or if one with the type name for this resource should be used."
def generate_object?(resource) do
Extension.get_opt(resource, [:graphql], :generate_object?, true)
end
@doc "Fields that may be filtered on"
def filterable_fields(resource) do
Extension.get_opt(resource, [:graphql], :filterable_fields, nil)
end
@doc "May the specified field be filtered on?"
def filterable_field?(resource, field_name) do
filterable_fields = AshGraphql.Resource.Info.filterable_fields(resource)
is_nil(filterable_fields) or field_name in filterable_fields
end
@doc "An error handler for errors produced by the resource"
def error_handler(resource) do
if resource,
do:
Extension.get_opt(
resource,
[:graphql],
:error_handler,
nil,
true
)
end
@doc "The complexity callback `{mod, fun}` for this type"
def complexity(resource) do
Extension.get_opt(resource, [:graphql], :complexity, nil)
end
end