This repository has been archived by the owner on Mar 29, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcxs.graphqls
387 lines (309 loc) · 8.79 KB
/
cxs.graphqls
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
# GENERIC SCHEMA DEFINITIONS
# ----------------------------------------------------------------------------
# the union is used to make it possible to define recursive type structures
union SchemaType = SchemaScalarType | SchemaCompoundType
type SchemaScalarType {
name : String!
description : String
type : String # scalar type
identifier : Boolean
aliases : [String] # email, e-mail, mail, mel, couriel
}
type SchemaCompoundType {
name : String!
description : String
types : [SchemaType]
}
type KeyValue {
key: String!
value : String
}
# MANAGEMENT OBJECTS
# ----------------------------------------------------------------------------
# Management objects are associated with a scope
type Scope {
id: ID!
}
type Persona {
scope : Scope!
}
type Segment {
scope: Scope!
name : ID! # this can be generated from displayname, but never changed
displayName : String
# todo should we do this like this or should we create another condition type to do this ?
eventFilter : Filter
profileFilter: Filter
}
type List {
scope: Scope!
}
type Topic {
scope : Scope!
id: ID! # cannot change
displayName : String
}
# EVENT-RELATED TYPES
# ----------------------------------------------------------------------------
type Event {
id: ID!
type: [EventType]!
subject: ClientProfile!
object: String!
location: [GeoPoint]
timestamp: DateTime
properties: [KeyValue]
}
type NewEvent {
type: [EventType]!
subject: ClientProfile!
object: String!
location: [GeoPoint]
timestamp: DateTime
properties: [KeyValue]
}
# event types are defined using schema types, see event-analysis.md for examples
type EventType {
id: ID! # human-readable, unique, ex: org.oasis-open.cxs.webClient.PageView,org.acmeCrm.cxs.crmClient.ColdCall
description: String
schema : SchemaCompoundType
}
# Queries
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Definitions
extend type Query {
event(id : String) : Event
events(filter : Filter, orderBy : [OrderBy]) : [EventConnection]
}
# Mutations
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Definitions
extend type Mutation {
createEvent(applicationKey: ApplicationKey, newEvent: NewEvent!) : Event
collectEvent(applicationKey: ApplicationKey, newEvents: [NewEvent]!) : Int
}
# PROFILE TYPES
# ----------------------------------------------------------------------------
# Browser --(structured event)--> Client -> ClientProfile -> MasterProfile
type ClientProfile {
id: ID!
properties : [KeyValue] # properties must match schema
client : Client
masterProfile : MasterProfile
schema: SchemaCompoundType # defined in the CXS server configuration
}
type MasterPropertyValue {
key: String!
value: String
clients : [Client]
}
type Interest {
topic: Topic!
score : Float # 0.0 to 1.0
}
type MasterProfile {
id: ID!
properties : [MasterPropertyValue] # properties must match schema
clientProfiles : [ClientProfile]
interests: [Interest]
segments : [Segment]
events(filter : Filter, first : Integer, last: Integer, after : String, before: String) : [EventConnection] # TODO: decide whether to use Relay-style pagination or another one
privacy : Privacy
schema: SchemaCompoundType # defined in the CXS server configuration
}
type Privacy {
doNotTrack: Boolean
anonymousBrowsing : Boolean
propertiesPolicy : [PropertyPolicy]
}
type PropertyPolicy {
propertyKey : String!
policyName : String!
}
# TODO do we need both this and policy ?
type PropertyPermission {
permission : String!
applicationKey : ApplicationKey
}
enum ImportStrategy {
SKIP,
OVERWRITE,
MERGE
}
type ImportOptions {
strategy : ImportStrategy
}
type Progress {
percentage: Double
message: String
}
type ImportResult {
progress: Progress
importedProfilesCount : Long
skippedProfiles : [ClientProfile]
}
# Queries
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Definitions
type Query {
count(filter : Filter) : Long # used to count profiles matching a condition
profilesByTopic(topicId : String) : [MasterProfile]
}
# Subscription
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
extend type Subscription {
importClientProfiles(applicationKey: ApplicationKey, profiles : [ClientProfile], importOptions: ImportOptions) : ImportResult
}
# CLIENT TYPES
# ----------------------------------------------------------------------------
type ApplicationKey {
client: Client!
label : String!
key: ID!
permissions: [String] # "createEvent", "createEventTypes", "fullAccess"
}
type Client {
applicationKeys: [ApplicationKey]
description: String!
name: String!
thirdPartySystem : Boolean
}
# CONTEXT TYPES
# ----------------------------------------------------------------------------
type ContextQuery {
filter : [Filter]
}
type Context {
clientProfile : ClientProfile
properties : [KeyValue] # could be computed by querying events, or stored pre-computed (ipAddress=1.2.3.4, location=TGV from Geneva to Paris, Wagon 12, Seat 71)
events(filter : Filter) : [Event] # e.g. last 5 events the user has sent
segments : [Segment]
dynamicSegments : [DynamicSegmentMatch]
interests : [Interest]
initiated : Long
terminated : Long
}
# Dynamic segments are used to evaluate segment definitions stored in other systems (such as a WCM for personalization)
type DynamicSegment {
name : String!
filter: Filter
}
type DynamicSegmentMatch {
name : String
matched : Boolean
executionTimeMillis : Long
}
# Queries
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Definitions
extend type Query {
context(dynamicSegments : [DynamicSegment], clientProfileId: String) : Context
}
# Mutations
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Definitions
extend type Mutation {
getContext(applicationKey: ApplicationKey, events: [Event], dynamicSegments : [DynamicSegment], clientProfileId: String!) : Context
}
# Subscriptions
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
# Definitions
extend type Subscription {
context(dynamicSegments : [DynamicSegment], clientProfileId: String) : Context
}
# INBOUND EVENT TYPES
# ----------------------------------------------------------------------------
# Inbound event could be used to push information from the context server back to a client. An example of an inbound event could
# include resolved locations, resolved client identification (server). Inbound events could be used for real-time personalization
extend type Subscription {
inboundEvents(clientProfileId : String, filter: Filter) : Event!
}
# QUERY AND FILTER TYPES
# ----------------------------------------------------------------------------
enum SortOrder {
ASC,
DESC,
UNSPECIFIED
}
# (timestamp > January 1st, 2016 AND timestamp < January 1st, 2017 AND type = 'PageView') OR location is in Geneva Area
# OR(
# AND(
# GT(timeStamp, January 1st 2016),
# LT(timeStamp, January 1st 2017),
# EQUALS(type, 'PageView')
# ),
# GEODISTANCE(location,'Geneva', '30km')
# )
# query filteredEvents(filter : Filter, orderBy : [OrderBy]) {
# events(filter : $filter, orderBy : $orderBy) {
# edges {
# type
# }
# }
# }
# variables:
# {
# "filterFunction": {
# "function" : "OR",
# "arguments" : [
# {
# "function" : "AND",
# "arguments" : [
# { "function" : "GT", "arguments" : [ "timeStamp", "January 1st, 2016" ] },
# { "function" : "LT", "arguments" : [ "timeStamp", "January 1st, 2017" ] },
# { "function" : "EQUALS", "arguments" : [ "type", "PageView" ] },
# ]
# },
# {
# "function" : "GEODISTANCE",
# "arguments" : [ "location", "Geneva", "30km" ]
# }
# ]
# },
# "orderBy" : [
# { fieldName : "type", order : "ASC" },
# { fieldName : "properties.pageID", order : "DESC" }
# ]
# }
union FilterArgument = Boolean | Int | Float | String | FilterFunction
type FilterFunction {
function : String!
arguments : [FilterArgument]
}
type OrderBy {
fieldName : String # eg : endTime, properties.location
order : SortOrder
}
type Filter {
filterFunction : FilterFunction
}
# PAGINATION-RELATED TYPES
# ----------------------------------------------------------------------------
type PageInfo {
hasPreviousPage : Boolean!
hasNextPage : Boolean!
}
type EventEdge {
node : Event
cursor : String!
}
type EventConnection {
edges : [EventEdge]
pageInfo : PageInfo
}
type ClientProfileEdge {
node : ClientProfile
cursor : String!
}
type ClientProfileConnection {
edges : [ClientProfileEdge]
pageInfo : PageInfo
}
type MasterProfileEdge {
node : MasterProfile
cursor : String!
}
type MasterProfileConnection {
edges : [MasterProfileEdge]
pageInfo : PageInfo
}