ecoportal-api-graphql 0.4.4 → 0.4.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2e9ec208e89d9a86ad745b0138d3c5ecf3105de642c9fc4ededae17e7a6e278a
4
- data.tar.gz: 57d342befa5dd0e2f713bd1a79a9f49ea6367b4fc0da262f0362faaeb21c6195
3
+ metadata.gz: 9f67bbd1cbfe0ea5ae4148e7b7fc5a72ed37dc0fc05515c0769fe99c5f666712
4
+ data.tar.gz: 41523d77adf9e48a66c7f159b037cbac4ebd5b4da5079649b8f7c90afbd3b825
5
5
  SHA512:
6
- metadata.gz: 5d3ea5e64afc249e874d38e4ed1000056c1663ba1b0edd9304b09cf8d999b6a0dd543e47819160742fcc7d73feb4bc7e389c47feba02bc0501a7cc9ff4da62b8
7
- data.tar.gz: 76ac28462d5d3dbcb5239a13865f026cd790d1272feec8d9c223b8808309fee14cf8ca59a4bc1992f9aaf6a64df986dc10af21c1c27eddb1d9b9c939d2ac30f8
6
+ metadata.gz: eca1f49081c066069dd9422acef0cbc86bd236c402aaa16245c5deea920436dce6704a7870d0d20782849ac25f8c73263f11f48cf74667b49f85282c0ae91573
7
+ data.tar.gz: c70722b5d1020897d7673f7b5d9af15dbc02b1d963cdcaeea4a2cebf3fa8c0b2d960ba694e36edbaf920f2a0fcfe69665508ac472c0c1f25ae8cbc2334293b5c
data/CHANGELOG.md CHANGED
@@ -9,7 +9,7 @@ All notable changes to this project will be documented in this file.
9
9
  - Analyse how to "DSL" currentOrganization.action.activities
10
10
  - review `path` tracking
11
11
 
12
- ## [0.4.5] - 2025-02-xx
12
+ ## [0.4.7] - 2025-04-xx
13
13
 
14
14
  ### Added
15
15
 
@@ -17,6 +17,30 @@ All notable changes to this project will be documented in this file.
17
17
 
18
18
  ### Fixed
19
19
 
20
+ ## [0.4.6] - 2025-04-02
21
+
22
+ ### Added
23
+
24
+ - `Ecoportal::API::GraphQL::Logic::QueryConnection`
25
+ - **Require** `default_connection_block` to child classes
26
+ - This aims to **not** having have client code having to define the block for `#each`
27
+
28
+ ### Changed
29
+
30
+ - upgraded `ecoportal-api` gem
31
+ - upgraded `ecoportal-api-v2` gem
32
+
33
+ ## [0.4.5] - 2025-03-14
34
+
35
+ ### Added
36
+
37
+ - Query `actionCategories`
38
+ - Mutation **create** `Action`
39
+
40
+ ### Changed
41
+
42
+ - `Action` model to have `locations` (**RS** upgrade)
43
+
20
44
  ## [0.4.4] - 2025-02-23
21
45
 
22
46
  ### Changed
@@ -32,8 +32,8 @@ Gem::Specification.new do |spec|
32
32
  spec.add_development_dependency 'rubocop-rake', '~> 0'
33
33
  spec.add_development_dependency 'yard', '>= 0.9.34', '< 1'
34
34
 
35
- spec.add_dependency 'ecoportal-api', '~> 0.10', '>= 0.10.8'
36
- spec.add_dependency 'ecoportal-api-v2', '~> 2.0', '>= 2.0.15'
35
+ spec.add_dependency 'ecoportal-api', '~> 0.10', '>= 0.10.9'
36
+ spec.add_dependency 'ecoportal-api-v2', '~> 2.0', '>= 2.0.16'
37
37
  spec.add_dependency 'graphlient', '>= 0.8.0', '< 0.9'
38
38
  end
39
39
 
@@ -10,7 +10,7 @@ module Ecoportal
10
10
  passthrough :name, :description
11
11
  passthrough :age
12
12
 
13
- passarray :tags, :location
13
+ passarray :locationIds
14
14
 
15
15
  passthrough :status, :relativeStatus
16
16
  passboolean :archived, :attached, :standaloneAction
@@ -6,7 +6,7 @@ module Ecoportal
6
6
  root!
7
7
 
8
8
  passkey :id
9
- passthrough :name, :value
9
+ passthrough :name, :value, :weight
10
10
  passboolean :archived
11
11
  end
12
12
  end
@@ -17,6 +17,10 @@ module Ecoportal
17
17
  updateMutation.query(**kargs, &block)
18
18
  end
19
19
 
20
+ def create(**kargs, &block)
21
+ createMutation.query(**kargs, &block)
22
+ end
23
+
20
24
  private
21
25
 
22
26
  def archiveMutation
@@ -26,6 +30,10 @@ module Ecoportal
26
30
  def updateMutation
27
31
  Ecoportal::API::GraphQL::Mutation::Action::Update.new(client)
28
32
  end
33
+
34
+ def createMutation
35
+ Ecoportal::API::GraphQL::Mutation::Action::Create.new(client)
36
+ end
29
37
  end
30
38
  end
31
39
  end
@@ -0,0 +1,11 @@
1
+ module Ecoportal
2
+ module API
3
+ class GraphQL
4
+ module Connection
5
+ class ActionCategory < Ecoportal::API::GraphQL::Logic::Connection
6
+ class_resolver :node_class, Ecoportal::API::GraphQL::Base::ActionCategory
7
+ end
8
+ end
9
+ end
10
+ end
11
+ end
@@ -9,4 +9,5 @@ end
9
9
 
10
10
  require 'ecoportal/api/graphql/connection/person_member'
11
11
  require 'ecoportal/api/graphql/connection/contractor_entity'
12
+ require 'ecoportal/api/graphql/connection/action_category'
12
13
  require 'ecoportal/api/graphql/connection/action'
@@ -15,7 +15,11 @@ module Ecoportal
15
15
  status
16
16
  relativeStatus
17
17
  archived
18
- tags
18
+ locations {
19
+ id
20
+ name
21
+ objectId
22
+ }
19
23
  name
20
24
  description
21
25
  assignedTo {
@@ -27,6 +31,10 @@ module Ecoportal
27
31
  dateTime
28
32
  timeZone
29
33
  }
34
+ updatedAt {
35
+ dateTime
36
+ timeZone
37
+ }
30
38
  dueDate {
31
39
  dateTime
32
40
  timeZone
@@ -0,0 +1,17 @@
1
+ module Ecoportal
2
+ module API
3
+ class GraphQL
4
+ class Fragment
5
+ fragment :ActionCategory, <<~GRAPHQL
6
+ fragment on Category {
7
+ id
8
+ name
9
+ value
10
+ archived
11
+ weight
12
+ }
13
+ GRAPHQL
14
+ end
15
+ end
16
+ end
17
+ end
@@ -61,5 +61,6 @@ end
61
61
 
62
62
  require 'ecoportal/api/graphql/fragment/pagination'
63
63
  require 'ecoportal/api/graphql/fragment/location_node'
64
+ require 'ecoportal/api/graphql/fragment/action_category'
64
65
  require 'ecoportal/api/graphql/fragment/action'
65
66
  require 'ecoportal/api/graphql/fragment/contractor_entity'
@@ -0,0 +1,13 @@
1
+ module Ecoportal
2
+ module API
3
+ class GraphQL
4
+ module Input
5
+ module Action
6
+ class Create < Ecoportal::API::GraphQL::Base::Action
7
+ passthrough :clientMutationId
8
+ end
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -9,5 +9,6 @@ module Ecoportal
9
9
  end
10
10
  end
11
11
 
12
- require_relative 'action/archive'
12
+ require_relative 'action/create'
13
13
  require_relative 'action/update'
14
+ require_relative 'action/archive'
@@ -24,6 +24,7 @@ module Ecoportal
24
24
 
25
25
  def each(&block)
26
26
  return to_enum(:each) unless block
27
+
27
28
  nodes.each(&block)
28
29
  end
29
30
  end
@@ -9,6 +9,8 @@ module Ecoportal
9
9
  def each(connection_block: nil, **kargs, &block)
10
10
  return to_enum(:each, **kargs, connection_block: connection_block) unless block
11
11
 
12
+ connection_block ||= default_connection_block
13
+
12
14
  cursor = nil
13
15
  loop do
14
16
  kargs.update(after: cursor) if cursor
@@ -30,6 +32,12 @@ module Ecoportal
30
32
  ) do |klass|
31
33
  klass.item_class = item_class
32
34
  end
35
+
36
+ privae
37
+
38
+ def default_connection_block
39
+ raise 'You should defined this method'
40
+ end
33
41
  end
34
42
  end
35
43
  end
@@ -12,6 +12,7 @@ module Ecoportal
12
12
  embeds_one :completer, klass: Model::PersonMember
13
13
  embeds_many :fileContainers, klass: Model::FileContainer
14
14
  embeds_many :linkedResources, klass: Model::Resource
15
+ embeds_many :locations, klass: Model::LocationNode
15
16
  #embeds_many :activities, klass: GraphQL::Model::Action::Activity
16
17
  #embeds_one :recurrence, klass: GraphQL::Model::Action::Recurrence
17
18
  end
@@ -16,6 +16,7 @@ module Ecoportal
16
16
  query :locationStructures, subpath: "locations", query_klass: "Ecoportal::API::GraphQL::Query::LocationStructures"
17
17
  query :contractorEntities, query_klass: "Ecoportal::API::GraphQL::Query::ContractorEntities"
18
18
  #contractorEntity,
19
+ query :actionCategories, query_klass: "Ecoportal::API::GraphQL::Query::ActionCategories"
19
20
  query :action, query_klass: "Ecoportal::API::GraphQL::Query::Action"
20
21
  query :actions, query_klass: "Ecoportal::API::GraphQL::Query::Actions"
21
22
  query :archiveAction, query_klass: "Ecoportal::API::GraphQL::Mutation::Action::Archive"
@@ -0,0 +1,40 @@
1
+ module Ecoportal
2
+ module API
3
+ class GraphQL
4
+ module Mutation
5
+ module Action
6
+ class Create < Ecoportal::API::GraphQL::Logic::Mutation
7
+ field_name :createAction
8
+
9
+ class_resolver :payload_class, Ecoportal::API::GraphQL::Payload::Action::Create
10
+ class_resolver :input_class, Ecoportal::API::GraphQL::Input::Action::Create
11
+
12
+ private
13
+
14
+ def basic_block(&block)
15
+ payload_block = block || default_payload_block
16
+ proc {
17
+ mutation(input: :CreateActionInput!) {
18
+ createAction(input: :input, &payload_block)
19
+ }
20
+ }
21
+ end
22
+
23
+ def default_payload_block
24
+ proc {
25
+ clientMutationId
26
+ errors {
27
+ details
28
+ fullMessages
29
+ }
30
+ item {
31
+ ___Fragment__Action
32
+ }
33
+ }
34
+ end
35
+ end
36
+ end
37
+ end
38
+ end
39
+ end
40
+ end
@@ -9,5 +9,6 @@ module Ecoportal
9
9
  end
10
10
  end
11
11
 
12
- require_relative 'action/archive'
12
+ require_relative 'action/create'
13
13
  require_relative 'action/update'
14
+ require_relative 'action/archive'
@@ -0,0 +1,13 @@
1
+ module Ecoportal
2
+ module API
3
+ class GraphQL
4
+ module Payload
5
+ module Action
6
+ class Create < Ecoportal::API::GraphQL::Logic::Payload
7
+ class_resolver :item_class, "Ecoportal::API::GraphQL::Model::Action"
8
+ end
9
+ end
10
+ end
11
+ end
12
+ end
13
+ end
@@ -9,5 +9,6 @@ module Ecoportal
9
9
  end
10
10
  end
11
11
 
12
- require_relative 'action/archive'
12
+ require_relative 'action/create'
13
13
  require_relative 'action/update'
14
+ require_relative 'action/archive'
@@ -0,0 +1,52 @@
1
+ module Ecoportal
2
+ module API
3
+ class GraphQL
4
+ module Query
5
+ class ActionCategories < Ecoportal::API::GraphQL::Logic::QueryConnection
6
+ field_name :actionCategories
7
+
8
+ class_resolver :item_class, Ecoportal::API::GraphQL::Base::ActionCategory
9
+ class_resolver :connection_class, Ecoportal::API::GraphQL::Connection::ActionCategory
10
+
11
+ private
12
+
13
+ def basic_block(&block)
14
+ connection_block = block || default_connection_block
15
+ proc {
16
+ query(
17
+ searchConf: :Search,
18
+ after: :string,
19
+ before: :string,
20
+ first: :int,
21
+ last: :int
22
+ ) {
23
+ currentOrganization {
24
+ actionCategories(
25
+ searchConf: :searchConf,
26
+ after: :after,
27
+ before: :before,
28
+ first: :first,
29
+ last: :last,
30
+ &connection_block
31
+ )
32
+ }
33
+ }
34
+ }
35
+ end
36
+
37
+ def default_connection_block
38
+ proc {
39
+ totalCount
40
+ pageInfo {
41
+ endCursor
42
+ }
43
+ nodes {
44
+ ___Ecoportal__API__GraphQL__Fragment__ActionCategory
45
+ }
46
+ }
47
+ end
48
+ end
49
+ end
50
+ end
51
+ end
52
+ end
@@ -17,10 +17,10 @@ module Ecoportal
17
17
  currentOrganization {
18
18
  actions(
19
19
  searchConf: :searchConf,
20
- after: :after,
21
- before: :before,
22
- first: :first,
23
- last: :last,
20
+ after: :after,
21
+ before: :before,
22
+ first: :first,
23
+ last: :last,
24
24
  &connection_block
25
25
  )
26
26
  }
@@ -10,6 +10,7 @@ end
10
10
  require 'ecoportal/api/graphql/query/location_classifications'
11
11
  require 'ecoportal/api/graphql/query/location_structure'
12
12
  require 'ecoportal/api/graphql/query/location_structures'
13
+ require 'ecoportal/api/graphql/query/action_categories'
13
14
  require 'ecoportal/api/graphql/query/action'
14
15
  require 'ecoportal/api/graphql/query/actions'
15
16
  require 'ecoportal/api/graphql/query/contractor_entities'
@@ -1,5 +1,5 @@
1
1
  module Ecoportal
2
2
  module API
3
- GRAPQL_VERSION = '0.4.4'.freeze
3
+ GRAPQL_VERSION = '0.4.6'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ecoportal-api-graphql
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.4
4
+ version: 0.4.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oscar Segura
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-02-24 00:00:00.000000000 Z
11
+ date: 2025-04-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry
@@ -141,7 +141,7 @@ dependencies:
141
141
  version: '0.10'
142
142
  - - ">="
143
143
  - !ruby/object:Gem::Version
144
- version: 0.10.8
144
+ version: 0.10.9
145
145
  type: :runtime
146
146
  prerelease: false
147
147
  version_requirements: !ruby/object:Gem::Requirement
@@ -151,7 +151,7 @@ dependencies:
151
151
  version: '0.10'
152
152
  - - ">="
153
153
  - !ruby/object:Gem::Version
154
- version: 0.10.8
154
+ version: 0.10.9
155
155
  - !ruby/object:Gem::Dependency
156
156
  name: ecoportal-api-v2
157
157
  requirement: !ruby/object:Gem::Requirement
@@ -161,7 +161,7 @@ dependencies:
161
161
  version: '2.0'
162
162
  - - ">="
163
163
  - !ruby/object:Gem::Version
164
- version: 2.0.15
164
+ version: 2.0.16
165
165
  type: :runtime
166
166
  prerelease: false
167
167
  version_requirements: !ruby/object:Gem::Requirement
@@ -171,7 +171,7 @@ dependencies:
171
171
  version: '2.0'
172
172
  - - ">="
173
173
  - !ruby/object:Gem::Version
174
- version: 2.0.15
174
+ version: 2.0.16
175
175
  - !ruby/object:Gem::Dependency
176
176
  name: graphlient
177
177
  requirement: !ruby/object:Gem::Requirement
@@ -252,6 +252,7 @@ files:
252
252
  - lib/ecoportal/api/graphql/builder/location_structure.rb
253
253
  - lib/ecoportal/api/graphql/connection.rb
254
254
  - lib/ecoportal/api/graphql/connection/action.rb
255
+ - lib/ecoportal/api/graphql/connection/action_category.rb
255
256
  - lib/ecoportal/api/graphql/connection/contractor_entity.rb
256
257
  - lib/ecoportal/api/graphql/connection/person_member.rb
257
258
  - lib/ecoportal/api/graphql/error.rb
@@ -260,6 +261,7 @@ files:
260
261
  - lib/ecoportal/api/graphql/error/validation_errors.rb
261
262
  - lib/ecoportal/api/graphql/fragment.rb
262
263
  - lib/ecoportal/api/graphql/fragment/action.rb
264
+ - lib/ecoportal/api/graphql/fragment/action_category.rb
263
265
  - lib/ecoportal/api/graphql/fragment/contractor_entity.rb
264
266
  - lib/ecoportal/api/graphql/fragment/location_node.rb
265
267
  - lib/ecoportal/api/graphql/fragment/pagination.rb
@@ -268,6 +270,7 @@ files:
268
270
  - lib/ecoportal/api/graphql/input.rb
269
271
  - lib/ecoportal/api/graphql/input/action.rb
270
272
  - lib/ecoportal/api/graphql/input/action/archive.rb
273
+ - lib/ecoportal/api/graphql/input/action/create.rb
271
274
  - lib/ecoportal/api/graphql/input/action/update.rb
272
275
  - lib/ecoportal/api/graphql/input/contractor_entity.rb
273
276
  - lib/ecoportal/api/graphql/input/contractor_entity/create.rb
@@ -312,6 +315,7 @@ files:
312
315
  - lib/ecoportal/api/graphql/mutation.rb
313
316
  - lib/ecoportal/api/graphql/mutation/action.rb
314
317
  - lib/ecoportal/api/graphql/mutation/action/archive.rb
318
+ - lib/ecoportal/api/graphql/mutation/action/create.rb
315
319
  - lib/ecoportal/api/graphql/mutation/action/update.rb
316
320
  - lib/ecoportal/api/graphql/mutation/contractor_entity.rb
317
321
  - lib/ecoportal/api/graphql/mutation/contractor_entity/create.rb
@@ -322,6 +326,7 @@ files:
322
326
  - lib/ecoportal/api/graphql/payload.rb
323
327
  - lib/ecoportal/api/graphql/payload/action.rb
324
328
  - lib/ecoportal/api/graphql/payload/action/archive.rb
329
+ - lib/ecoportal/api/graphql/payload/action/create.rb
325
330
  - lib/ecoportal/api/graphql/payload/action/update.rb
326
331
  - lib/ecoportal/api/graphql/payload/contractor_entity.rb
327
332
  - lib/ecoportal/api/graphql/payload/contractor_entity/create.rb
@@ -333,6 +338,7 @@ files:
333
338
  - lib/ecoportal/api/graphql/payload/location_structure/command_interface.rb
334
339
  - lib/ecoportal/api/graphql/query.rb
335
340
  - lib/ecoportal/api/graphql/query/action.rb
341
+ - lib/ecoportal/api/graphql/query/action_categories.rb
336
342
  - lib/ecoportal/api/graphql/query/actions.rb
337
343
  - lib/ecoportal/api/graphql/query/contractor_entities.rb
338
344
  - lib/ecoportal/api/graphql/query/location_classifications.rb