github.com/weaviate/weaviate@v1.24.6/test/acceptance/graphql_resolvers/fixtures/data.json (about) 1 { 2 "Objects": [ 3 { 4 "class": "City", 5 "uuid": "001", 6 "name": "Amsterdam", 7 "population": 1800000, 8 "isCapital": true, 9 "inCountry": [ 10 { 11 "class": "Country", 12 "uuid": "005", 13 "name": "Netherlands", 14 "population": 17000000 15 } 16 ], 17 "reviews": "Great! A perfect city", 18 "location": { 19 "latitude": 52.366667, 20 "longitude": 4.9 21 } 22 }, 23 { 24 "class": "City", 25 "uuid": "002", 26 "name": "Rotterdam", 27 "population": 1800000, 28 "isCapital": false, 29 "inCountry": [ 30 { 31 "class": "Country", 32 "uuid": "005", 33 "name": "Netherlands", 34 "population": 17000000 35 } 36 ] 37 }, 38 { 39 "class": "City", 40 "uuid": "003", 41 "name": "Berlin", 42 "population": 3470000, 43 "isCapital": true, 44 "reviews": "I had a bad time here", 45 "inCountry": [ 46 { 47 "class": "Country", 48 "uuid": "006", 49 "name": "Germany", 50 "population": 83000000 51 } 52 ] 53 }, 54 { 55 "class": "City", 56 "uuid": "004", 57 "name": "Dusseldorf", 58 "population": 600000, 59 "isCapital": false, 60 "inCountry": [ 61 { 62 "class": "Country", 63 "uuid": "006", 64 "name": "Germany", 65 "population": 83000000 66 } 67 ], 68 "location": { 69 "latitude": 51.225556, 70 "longitude": 6.782778 71 } 72 }, 73 { 74 "class": "Country", 75 "uuid": "005", 76 "name": "Netherlands", 77 "population": 17000000 78 }, 79 { 80 "class": "Country", 81 "uuid": "006", 82 "name": "Germany", 83 "population": 83000000 84 }, 85 { 86 "class": "Person", 87 "uuid": "007", 88 "livesIn": [ 89 { 90 "class": "City", 91 "uuid": "004", 92 "name": "Dusseldorf", 93 "population": 600000, 94 "isCapital": false, 95 "inCountry": [ 96 { 97 "class": "Country", 98 "uuid": "006", 99 "name": "Germany", 100 "population": 83000000 101 } 102 ] 103 } 104 ], 105 "ofNation": [ 106 { 107 "class": "Country", 108 "uuid": "006", 109 "name": "Germany", 110 "population": 83000000 111 } 112 ] 113 }, 114 { 115 "class": "Person", 116 "uuid": "008", 117 "livesIn": [ 118 { 119 "class": "City", 120 "uuid": "001", 121 "name": "Amsterdam", 122 "population": 1800000, 123 "isCapital": true, 124 "inCountry": { 125 "class": "Country", 126 "uuid": "005", 127 "name": "Netherlands", 128 "population": 17000000 129 } 130 } 131 ], 132 "ofNation": [ 133 { 134 "class": "Country", 135 "uuid": "005", 136 "name": "Netherlands", 137 "population": 17000000 138 } 139 ] 140 }, 141 { 142 "class": "Airport", 143 "uuid": "009", 144 "inCity": [ 145 { 146 "class": "City", 147 "uuid": "001", 148 "name": "Amsterdam", 149 "population": 1800000, 150 "isCapital": true, 151 "inCountry": [ 152 { 153 "class": "Country", 154 "uuid": "005", 155 "name": "Netherlands", 156 "population": 17000000 157 } 158 ] 159 } 160 ], 161 "code": "10000" 162 }, 163 { 164 "class": "Airport", 165 "uuid": "010", 166 "inCity": [ 167 { 168 "class": "City", 169 "uuid": "002", 170 "name": "Rotterdam", 171 "population": 1800000, 172 "isCapital": false, 173 "inCountry": { 174 "class": "Country", 175 "uuid": "005", 176 "name": "Netherlands", 177 "population": 17000000 178 } 179 } 180 ], 181 "code": "20000" 182 }, 183 { 184 "class": "Airport", 185 "uuid": "011", 186 "inCity": [ 187 { 188 "class": "City", 189 "uuid": "004", 190 "name": "Dusseldorf", 191 "population": 600000, 192 "isCapital": false, 193 "inCountry": { 194 "class": "Country", 195 "uuid": "006", 196 "name": "Germany", 197 "population": 83000000 198 } 199 } 200 ], 201 "code": "30000" 202 }, 203 { 204 "class": "Airport", 205 "uuid": "012", 206 "inCity": [ 207 { 208 "class": "City", 209 "uuid": "003", 210 "name": "Berlin", 211 "population": 3470000, 212 "isCapital": true, 213 "inCountry": { 214 "class": "Country", 215 "uuid": "006", 216 "name": "Germany", 217 "population": 83000000 218 } 219 } 220 ], 221 "code": "40000" 222 }, 223 { 224 "class": "Airline", 225 "uuid": "013", 226 "name": "Lufthansa", 227 "basedIn": [ 228 { 229 "class": "City", 230 "uuid": "003", 231 "name": "Berlin", 232 "population": 3470000, 233 "isCapital": true, 234 "inCountry": { 235 "class": "Country", 236 "uuid": "006", 237 "name": "Germany", 238 "population": 83000000 239 } 240 } 241 ], 242 "code": "123" 243 }, 244 { 245 "class": "Airline", 246 "uuid": "014", 247 "name": "KLM", 248 "basedIn": [ 249 { 250 "class": "City", 251 "uuid": "001", 252 "name": "Amsterdam", 253 "population": 1800000, 254 "isCapital": true, 255 "inCountry": { 256 "class": "Country", 257 "uuid": "005", 258 "name": "Netherlands", 259 "population": 17000000 260 } 261 } 262 ], 263 "code": "321" 264 }, 265 { 266 "class": "Aircraft", 267 "uuid": "015", 268 "name": "Boeing 747", 269 "numberOfSeats": 366 270 }, 271 { 272 "class": "Aircraft", 273 "uuid": "016", 274 "name": "Airbus A380", 275 "numberOfSeats": 853 276 }, 277 { 278 "class": "Plane", 279 "uuid": "017", 280 "code": "AB123", 281 "aircraft": [ 282 { 283 "class": "Aircraft", 284 "uuid": "015", 285 "name": "Boeing 747", 286 "numberOfSeats": 366 287 } 288 ], 289 "ofAirline": [ 290 { 291 "class": "Airline", 292 "uuid": "013", 293 "name": "Lufthansa", 294 "basedIn": { 295 "class": "City", 296 "uuid": "003", 297 "name": "Berlin", 298 "population": 3470000, 299 "isCapital": true, 300 "inCountry": { 301 "class": "Country", 302 "uuid": "006", 303 "name": "Germany", 304 "population": 83000000 305 } 306 }, 307 "code": "123" 308 } 309 ] 310 }, 311 { 312 "class": "Plane", 313 "uuid": "018", 314 "code": "AB456", 315 "aircraft": [ 316 { 317 "class": "Aircraft", 318 "uuid": "016", 319 "name": "Airbus A380", 320 "numberOfSeats": 853 321 } 322 ], 323 "ofAirline": [ 324 { 325 "class": "Airline", 326 "uuid": "014", 327 "name": "KLM", 328 "basedIn": { 329 "class": "City", 330 "uuid": "001", 331 "name": "Amsterdam", 332 "population": 1800000, 333 "isCapital": true, 334 "inCountry": { 335 "class": "Country", 336 "uuid": "005", 337 "name": "Netherlands", 338 "population": 17000000 339 } 340 }, 341 "code": "321" 342 } 343 ] 344 }, 345 { 346 "class": "Plane", 347 "uuid": "019", 348 "code": "AB457", 349 "aircraft": [ 350 { 351 "class": "Aircraft", 352 "uuid": "015", 353 "name": "Boeing 747", 354 "numberOfSeats": 366 355 } 356 ], 357 "ofAirline": [ 358 { 359 "class": "Airline", 360 "uuid": "014", 361 "name": "KLM", 362 "basedIn": [ 363 { 364 "class": "City", 365 "uuid": "001", 366 "name": "Amsterdam", 367 "population": 1800000, 368 "isCapital": true, 369 "inCountry": [ 370 { 371 "class": "Country", 372 "uuid": "005", 373 "name": "Netherlands", 374 "population": 17000000 375 } 376 ] 377 } 378 ], 379 "code": "321" 380 } 381 ] 382 }, 383 { 384 "class": "Plane", 385 "uuid": "020", 386 "code": "AB456", 387 "aircraft": [ 388 { 389 "class": "Aircraft", 390 "uuid": "016", 391 "name": "Airbus A380", 392 "numberOfSeats": 853 393 } 394 ], 395 "ofAirline": [ 396 { 397 "class": "Airline", 398 "uuid": "013", 399 "name": "Lufthansa", 400 "basedIn": [ 401 { 402 "class": "City", 403 "uuid": "003", 404 "name": "Berlin", 405 "population": 3470000, 406 "isCapital": true, 407 "inCountry": [ 408 { 409 "class": "Country", 410 "uuid": "006", 411 "name": "Germany", 412 "population": 83000000 413 } 414 ] 415 } 416 ], 417 "code": "123" 418 } 419 ] 420 } 421 ], 422 "Actions": [ 423 { 424 "class": "Event", 425 "uuid": "021", 426 "name": "A name" 427 }, 428 { 429 "class": "Event", 430 "uuid": "022", 431 "description": "A desricption" 432 }, 433 { 434 "class": "Flight", 435 "uuid": "100", 436 "aircraft": [ 437 { 438 "class": "Aircraft", 439 "uuid": "016", 440 "name": "Airbus A380", 441 "numberOfSeats": 853 442 } 443 ], 444 "arrivalAirport": [ 445 { 446 "class": "Airport", 447 "uuid": "011", 448 "inCity": [ 449 { 450 "class": "City", 451 "uuid": "004", 452 "name": "Dusseldorf", 453 "population": 600000, 454 "isCapital": false, 455 "inCountry": { 456 "class": "Country", 457 "uuid": "006", 458 "name": "Germany", 459 "population": 83000000 460 } 461 } 462 ], 463 "code": "30000" 464 } 465 ], 466 "departureAirport": [ 467 { 468 "class": "Airport", 469 "uuid": "012", 470 "inCity": [ 471 { 472 "class": "City", 473 "uuid": "003", 474 "name": "Berlin", 475 "population": 3470000, 476 "isCapital": true, 477 "inCountry": { 478 "class": "Country", 479 "uuid": "006", 480 "name": "Germany", 481 "population": 83000000 482 } 483 } 484 ], 485 "code": "40000" 486 } 487 ], 488 "flightNumber": "LH987", 489 "date": "2017-08-17T12:47:00+02:00", 490 "estimatedFlightDuration": 50, 491 "numberOfPassengers": 300, 492 "isDelayed": false 493 } 494 ] 495 }