@comunica/actor-init-query 2.0.1-alpha.5.0
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.
- package/LICENSE.txt +22 -0
- package/README.md +54 -0
- package/components/ActorInitQuery.jsonld +335 -0
- package/components/ActorInitQueryBase.jsonld +468 -0
- package/components/ActorInitSparql.jsonld +328 -0
- package/components/ActorInitSparqlBase.jsonld +373 -0
- package/components/HttpServiceSparqlEndpoint.jsonld +62 -0
- package/components/MemoryPhysicalQueryPlanLogger.jsonld +54 -0
- package/components/QueryEngineBase.jsonld +87 -0
- package/components/QueryEngineFactoryBase.jsonld +33 -0
- package/components/cli/CliArgsHandlerBase.jsonld +67 -0
- package/components/cli/CliArgsHandlerHttp.jsonld +30 -0
- package/components/cli/CliArgsHandlerQuery.jsonld +93 -0
- package/components/cli/ICliArgsHandler.jsonld +20 -0
- package/components/components.jsonld +19 -0
- package/components/context.jsonld +290 -0
- package/lib/ActorInitQuery-browser.d.ts +3 -0
- package/lib/ActorInitQuery-browser.js +10 -0
- package/lib/ActorInitQuery.d.ts +10 -0
- package/lib/ActorInitQuery.js +85 -0
- package/lib/ActorInitQueryBase.d.ts +107 -0
- package/lib/ActorInitQueryBase.js +20 -0
- package/lib/HttpServiceSparqlEndpoint.d.ts +113 -0
- package/lib/HttpServiceSparqlEndpoint.js +440 -0
- package/lib/MemoryPhysicalQueryPlanLogger.d.ts +14 -0
- package/lib/MemoryPhysicalQueryPlanLogger.js +73 -0
- package/lib/QueryEngineBase.d.ts +68 -0
- package/lib/QueryEngineBase.js +302 -0
- package/lib/QueryEngineFactoryBase.d.ts +36 -0
- package/lib/QueryEngineFactoryBase.js +40 -0
- package/lib/cli/CliArgsHandlerBase.d.ts +19 -0
- package/lib/cli/CliArgsHandlerBase.js +170 -0
- package/lib/cli/CliArgsHandlerHttp.d.ts +9 -0
- package/lib/cli/CliArgsHandlerHttp.js +67 -0
- package/lib/cli/CliArgsHandlerQuery.d.ts +13 -0
- package/lib/cli/CliArgsHandlerQuery.js +105 -0
- package/lib/index-browser.d.ts +3 -0
- package/lib/index-browser.js +20 -0
- package/lib/index.d.ts +9 -0
- package/lib/index.js +26 -0
- package/package.json +67 -0
package/LICENSE.txt
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
|
|
3
|
+
Copyright © 2017–now Ruben Taelman, Joachim Van Herwegen
|
|
4
|
+
Comunica Association and Ghent University – imec, Belgium
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
8
|
+
in the Software without restriction, including without limitation the rights
|
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
11
|
+
furnished to do so, subject to the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be included in
|
|
14
|
+
all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
22
|
+
THE SOFTWARE.
|
package/README.md
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Comunica Query Init Actor
|
|
2
|
+
|
|
3
|
+
[](https://www.npmjs.com/package/@comunica/actor-init-query)
|
|
4
|
+
|
|
5
|
+
An [Init](https://github.com/comunica/comunica/tree/master/packages/bus-init) actor that can initialize a query engine.
|
|
6
|
+
|
|
7
|
+
This module is part of the [Comunica framework](https://github.com/comunica/comunica),
|
|
8
|
+
and should only be used by [developers that want to build their own query engine](https://comunica.dev/docs/modify/).
|
|
9
|
+
|
|
10
|
+
[Click here if you just want to query with Comunica](https://comunica.dev/docs/query/).
|
|
11
|
+
|
|
12
|
+
## Install
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
$ yarn add @comunica/actor-init-query
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
## Configure
|
|
19
|
+
|
|
20
|
+
After installing, this package can be added to your engine's configuration as follows:
|
|
21
|
+
```text
|
|
22
|
+
{
|
|
23
|
+
"@context": [
|
|
24
|
+
...
|
|
25
|
+
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-init-query/^2.0.0/components/context.jsonld"
|
|
26
|
+
],
|
|
27
|
+
"actors": [
|
|
28
|
+
...
|
|
29
|
+
{
|
|
30
|
+
"@id": "urn:comunica:default:init/actors#query",
|
|
31
|
+
"@type": "ActorInitQuery",
|
|
32
|
+
"mediatorOptimizeQueryOperation": { "@id": "urn:comunica:default:optimize-query-operation/mediators#main" },
|
|
33
|
+
"mediatorQueryOperation": { "@id": "urn:comunica:default:query-operation/mediators#main" },
|
|
34
|
+
"mediatorQueryParse": { "@id": "urn:comunica:default:query-parse/mediators#main" },
|
|
35
|
+
"mediatorQueryResultSerialize": { "@id": "urn:comunica:default:query-result-serialize/mediators#serialize" },
|
|
36
|
+
"mediatorQueryResultSerializeMediaTypeCombiner": { "@id": "urn:comunica:default:query-result-serialize/mediators#mediaType" },
|
|
37
|
+
"mediatorQueryResultSerializeMediaTypeFormatCombiner": { "@id": "urn:comunica:default:query-result-serialize/mediators#mediaTypeFormat" },
|
|
38
|
+
"mediatorContextPreprocess": { "@id": "urn:comunica:default:context-preprocess/mediators#main" },
|
|
39
|
+
"mediatorHttpInvalidate": { "@id": "urn:comunica:default:http-invalidate/mediators#main" }
|
|
40
|
+
}
|
|
41
|
+
]
|
|
42
|
+
}
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
### Config Parameters
|
|
46
|
+
|
|
47
|
+
* `mediatorOptimizeQueryOperation`: A mediator over the [optimize query operation bus](https://github.com/comunica/comunica/tree/master/packages/bus-optimize-query-operation).
|
|
48
|
+
* `mediatorQueryOperation`: A mediator over the [query operation bus](https://github.com/comunica/comunica/tree/master/packages/bus-query-operation).
|
|
49
|
+
* `mediatorSparqlParse`: A mediator over the [query parse bus](https://github.com/comunica/comunica/tree/master/packages/bus-query-parse).
|
|
50
|
+
* `mediatorSparqlSerialize`: A mediator over the [query result serialize bus](https://github.com/comunica/comunica/tree/master/packages/bus-query-result-serialize).
|
|
51
|
+
* `mediatorSparqlSerializeMediaTypeCombiner`: A mediator over the [query result serialize bus](https://github.com/comunica/comunica/tree/master/packages/bus-query-result-serialize).
|
|
52
|
+
* `mediatorSparqlSerializeMediaTypeFormatCombiner`: A mediator over the [query result serialize bus](https://github.com/comunica/comunica/tree/master/packages/bus-query-result-serialize).
|
|
53
|
+
* `mediatorContextPreprocess`: A mediator over the [context preprocess bus](https://github.com/comunica/comunica/tree/master/packages/bus-context-preprocess).
|
|
54
|
+
* `mediatorHttpInvalidate`: A mediator over the [HTTP invalidate bus](https://github.com/comunica/comunica/tree/master/packages/bus-http-invalidate).
|
|
@@ -0,0 +1,335 @@
|
|
|
1
|
+
{
|
|
2
|
+
"@context": [
|
|
3
|
+
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/actor-init-query/^2.0.0/components/context.jsonld",
|
|
4
|
+
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/core/^2.0.0/components/context.jsonld",
|
|
5
|
+
"https://linkedsoftwaredependencies.org/bundles/npm/@comunica/bus-init/^2.0.0/components/context.jsonld"
|
|
6
|
+
],
|
|
7
|
+
"@id": "npmd:@comunica/actor-init-query",
|
|
8
|
+
"components": [
|
|
9
|
+
{
|
|
10
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery",
|
|
11
|
+
"@type": "Class",
|
|
12
|
+
"requireElement": "ActorInitQuery",
|
|
13
|
+
"extends": [
|
|
14
|
+
"caiq:components/ActorInitQueryBase.jsonld#ActorInitQueryBase"
|
|
15
|
+
],
|
|
16
|
+
"comment": "A comunica Query Init Actor.",
|
|
17
|
+
"parameters": [
|
|
18
|
+
{
|
|
19
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_mediatorOptimizeQueryOperation",
|
|
20
|
+
"range": "cc:components/Mediator.jsonld#Mediator",
|
|
21
|
+
"comment": "The query operation optimize mediator"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_mediatorQueryOperation",
|
|
25
|
+
"range": "cc:components/Mediator.jsonld#Mediator",
|
|
26
|
+
"comment": "The query operation mediator"
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_mediatorQueryParse",
|
|
30
|
+
"range": "cc:components/Mediator.jsonld#Mediator",
|
|
31
|
+
"comment": "The query parse mediator"
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_mediatorQueryResultSerialize",
|
|
35
|
+
"range": "cc:components/Mediator.jsonld#Mediator",
|
|
36
|
+
"comment": "The query serialize mediator"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_mediatorQueryResultSerializeMediaTypeCombiner",
|
|
40
|
+
"range": "cc:components/Mediator.jsonld#Mediator",
|
|
41
|
+
"comment": "The query serialize media type combinator"
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_mediatorQueryResultSerializeMediaTypeFormatCombiner",
|
|
45
|
+
"range": "cc:components/Mediator.jsonld#Mediator",
|
|
46
|
+
"comment": "The query serialize media type format combinator"
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_mediatorContextPreprocess",
|
|
50
|
+
"range": "cc:components/Mediator.jsonld#Mediator",
|
|
51
|
+
"comment": "The context processing combinator"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_mediatorHttpInvalidate",
|
|
55
|
+
"range": "cc:components/Mediator.jsonld#Mediator",
|
|
56
|
+
"comment": "The HTTP cache invalidation mediator"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_logger",
|
|
60
|
+
"range": "cc:components/Logger.jsonld#Logger",
|
|
61
|
+
"default": {
|
|
62
|
+
"@type": "npmd:@comunica/logger-void/^2.0.0/components/LoggerVoid.jsonld#LoggerVoid"
|
|
63
|
+
},
|
|
64
|
+
"comment": "The logger of this actor"
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_queryString",
|
|
68
|
+
"range": {
|
|
69
|
+
"@type": "ParameterRangeUnion",
|
|
70
|
+
"parameterRangeElements": [
|
|
71
|
+
"xsd:string",
|
|
72
|
+
{
|
|
73
|
+
"@type": "ParameterRangeUndefined"
|
|
74
|
+
}
|
|
75
|
+
]
|
|
76
|
+
},
|
|
77
|
+
"comment": "A SPARQL query string"
|
|
78
|
+
},
|
|
79
|
+
{
|
|
80
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_defaultQueryInputFormat",
|
|
81
|
+
"range": {
|
|
82
|
+
"@type": "ParameterRangeUnion",
|
|
83
|
+
"parameterRangeElements": [
|
|
84
|
+
"xsd:string",
|
|
85
|
+
{
|
|
86
|
+
"@type": "ParameterRangeUndefined"
|
|
87
|
+
}
|
|
88
|
+
]
|
|
89
|
+
},
|
|
90
|
+
"default": "sparql",
|
|
91
|
+
"comment": "The default query input format"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_context",
|
|
95
|
+
"range": {
|
|
96
|
+
"@type": "ParameterRangeUnion",
|
|
97
|
+
"parameterRangeElements": [
|
|
98
|
+
"xsd:string",
|
|
99
|
+
{
|
|
100
|
+
"@type": "ParameterRangeUndefined"
|
|
101
|
+
}
|
|
102
|
+
]
|
|
103
|
+
},
|
|
104
|
+
"comment": "A JSON string of a query operation context"
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_contextKeyShortcuts",
|
|
108
|
+
"range": "rdf:JSON",
|
|
109
|
+
"default": {
|
|
110
|
+
"@type": "@json",
|
|
111
|
+
"@value": {
|
|
112
|
+
"source": "@comunica/bus-rdf-resolve-quad-pattern:source",
|
|
113
|
+
"sources": "@comunica/bus-rdf-resolve-quad-pattern:sources",
|
|
114
|
+
"destination": "@comunica/bus-rdf-update-quads:destination",
|
|
115
|
+
"initialBindings": "@comunica/actor-init-query:initialBindings",
|
|
116
|
+
"queryFormat": "@comunica/actor-init-query:queryFormat",
|
|
117
|
+
"baseIRI": "@comunica/actor-init-query:baseIRI",
|
|
118
|
+
"log": "@comunica/core:log",
|
|
119
|
+
"datetime": "@comunica/actor-http-memento:datetime",
|
|
120
|
+
"queryTimestamp": "@comunica/actor-init-query:queryTimestamp",
|
|
121
|
+
"httpProxyHandler": "@comunica/actor-http-proxy:httpProxyHandler",
|
|
122
|
+
"lenient": "@comunica/actor-init-query:lenient",
|
|
123
|
+
"httpIncludeCredentials": "@comunica/bus-http:include-credentials",
|
|
124
|
+
"httpAuth": "@comunica/bus-http:auth",
|
|
125
|
+
"fetch": "@comunica/bus-http:fetch",
|
|
126
|
+
"readOnly": "@comunica/bus-query-operation:readOnly",
|
|
127
|
+
"extensionFunctions": "@comunica/actor-init-query:extensionFunctions",
|
|
128
|
+
"extensionFunctionCreator": "@comunica/actor-init-query:extensionFunctionCreator",
|
|
129
|
+
"explain": "@comunica/actor-init-query:explain"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
"comment": "A record of context shortcuts to full context keys (as defined in @comunica/context-entries)."
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_name",
|
|
136
|
+
"range": "xsd:string",
|
|
137
|
+
"default": {
|
|
138
|
+
"@id": "rdf:subject"
|
|
139
|
+
},
|
|
140
|
+
"comment": "The name for this actor."
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_bus",
|
|
144
|
+
"range": {
|
|
145
|
+
"@type": "ParameterRangeGenericComponent",
|
|
146
|
+
"component": "cc:components/Bus.jsonld#Bus",
|
|
147
|
+
"genericTypeInstances": [
|
|
148
|
+
{
|
|
149
|
+
"@type": "ParameterRangeGenericComponent",
|
|
150
|
+
"component": "cc:components/Actor.jsonld#Actor",
|
|
151
|
+
"genericTypeInstances": [
|
|
152
|
+
{
|
|
153
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
154
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_I"
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
158
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_T"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
162
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_O"
|
|
163
|
+
}
|
|
164
|
+
]
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
168
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_I"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
172
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_T"
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
176
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_O"
|
|
177
|
+
}
|
|
178
|
+
]
|
|
179
|
+
},
|
|
180
|
+
"default": {
|
|
181
|
+
"@id": "cbi:components/ActorInit.jsonld#ActorInit_default_bus",
|
|
182
|
+
"@type": "cc:components/Bus.jsonld#Bus"
|
|
183
|
+
},
|
|
184
|
+
"comment": "The bus this actor subscribes to."
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_beforeActors",
|
|
188
|
+
"range": {
|
|
189
|
+
"@type": "ParameterRangeUnion",
|
|
190
|
+
"parameterRangeElements": [
|
|
191
|
+
{
|
|
192
|
+
"@type": "ParameterRangeArray",
|
|
193
|
+
"parameterRangeValue": {
|
|
194
|
+
"@type": "ParameterRangeGenericComponent",
|
|
195
|
+
"component": "cc:components/Actor.jsonld#Actor",
|
|
196
|
+
"genericTypeInstances": [
|
|
197
|
+
{
|
|
198
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
199
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_I"
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
203
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_T"
|
|
204
|
+
},
|
|
205
|
+
{
|
|
206
|
+
"@type": "ParameterRangeGenericTypeReference",
|
|
207
|
+
"parameterRangeGenericType": "npmd:@comunica/actor-abstract-mediatyped/^2.0.0/components/ActorAbstractMediaTyped.jsonld#ActorAbstractMediaTyped__generic_O"
|
|
208
|
+
}
|
|
209
|
+
]
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"@type": "ParameterRangeUndefined"
|
|
214
|
+
}
|
|
215
|
+
]
|
|
216
|
+
},
|
|
217
|
+
"comment": "Actor that must be registered in the bus before this actor."
|
|
218
|
+
}
|
|
219
|
+
],
|
|
220
|
+
"memberFields": [
|
|
221
|
+
{
|
|
222
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery__member_constructor",
|
|
223
|
+
"memberFieldName": "constructor"
|
|
224
|
+
},
|
|
225
|
+
{
|
|
226
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery__member_run",
|
|
227
|
+
"memberFieldName": "run"
|
|
228
|
+
}
|
|
229
|
+
],
|
|
230
|
+
"constructorArguments": [
|
|
231
|
+
{
|
|
232
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args__constructorArgument",
|
|
233
|
+
"fields": [
|
|
234
|
+
{
|
|
235
|
+
"keyRaw": "mediatorOptimizeQueryOperation",
|
|
236
|
+
"value": {
|
|
237
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_mediatorOptimizeQueryOperation"
|
|
238
|
+
}
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
"keyRaw": "mediatorQueryOperation",
|
|
242
|
+
"value": {
|
|
243
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_mediatorQueryOperation"
|
|
244
|
+
}
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"keyRaw": "mediatorQueryParse",
|
|
248
|
+
"value": {
|
|
249
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_mediatorQueryParse"
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"keyRaw": "mediatorQueryResultSerialize",
|
|
254
|
+
"value": {
|
|
255
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_mediatorQueryResultSerialize"
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
"keyRaw": "mediatorQueryResultSerializeMediaTypeCombiner",
|
|
260
|
+
"value": {
|
|
261
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_mediatorQueryResultSerializeMediaTypeCombiner"
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"keyRaw": "mediatorQueryResultSerializeMediaTypeFormatCombiner",
|
|
266
|
+
"value": {
|
|
267
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_mediatorQueryResultSerializeMediaTypeFormatCombiner"
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"keyRaw": "mediatorContextPreprocess",
|
|
272
|
+
"value": {
|
|
273
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_mediatorContextPreprocess"
|
|
274
|
+
}
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"keyRaw": "mediatorHttpInvalidate",
|
|
278
|
+
"value": {
|
|
279
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_mediatorHttpInvalidate"
|
|
280
|
+
}
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
"keyRaw": "logger",
|
|
284
|
+
"value": {
|
|
285
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_logger"
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
"keyRaw": "queryString",
|
|
290
|
+
"value": {
|
|
291
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_queryString"
|
|
292
|
+
}
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
"keyRaw": "defaultQueryInputFormat",
|
|
296
|
+
"value": {
|
|
297
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_defaultQueryInputFormat"
|
|
298
|
+
}
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"keyRaw": "context",
|
|
302
|
+
"value": {
|
|
303
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_context"
|
|
304
|
+
}
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
"keyRaw": "contextKeyShortcuts",
|
|
308
|
+
"value": {
|
|
309
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_contextKeyShortcuts"
|
|
310
|
+
}
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"keyRaw": "name",
|
|
314
|
+
"value": {
|
|
315
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_name"
|
|
316
|
+
}
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
"keyRaw": "bus",
|
|
320
|
+
"value": {
|
|
321
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_bus"
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"keyRaw": "beforeActors",
|
|
326
|
+
"value": {
|
|
327
|
+
"@id": "caiq:components/ActorInitQuery.jsonld#ActorInitQuery_args_beforeActors"
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
]
|
|
331
|
+
}
|
|
332
|
+
]
|
|
333
|
+
}
|
|
334
|
+
]
|
|
335
|
+
}
|