graphdb-workbench-tests 3.0.0-TR4 → 3.0.0-TR6
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/fixtures/graphdb-import/ontology-and-shapes.ttl +562 -0
- package/fixtures/graphdb-import/swapi-dataset.ttl +4393 -0
- package/fixtures/graphql/endpoints/graphql-endpoints-info.json +49 -0
- package/fixtures/graphql/endpoints/graphql-endpoints.json +17 -0
- package/fixtures/graphql/endpoints/graphql-swapi-endpoints.json +23 -0
- package/fixtures/graphql/endpoints/no-graphql-endpoints-info.json +3 -0
- package/fixtures/graphql/soml/swapi-schema-film-restricted.yaml +335 -0
- package/fixtures/graphql/soml/swapi-schema.yaml +857 -0
- package/fixtures/locale-en.json +173 -1
- package/integration/graphql/create-graphql-endpoint.spec.js +261 -0
- package/integration/graphql/graphql-endpoint-filtering.spec.js +69 -0
- package/integration/graphql/graphql-endpoint-management-view.spec.js +131 -0
- package/integration/import/import-server-files-batch-operations.spec.js +4 -3
- package/integration/import/import-server-files.spec.js +7 -7
- package/integration/import/import-view.spec.js +2 -1
- package/integration/sparql-editor/actions/show-saved-queries.spec.js +1 -1
- package/npm-shrinkwrap.json +2 -2
- package/package.json +1 -1
- package/steps/graphql/create-graphql-endpoint-steps.js +253 -0
- package/steps/graphql/graphql-endpoint-management-steps.js +84 -0
- package/steps/graphql/graphql-playground-steps.js +1 -1
- package/steps/import/import-test-constants.js +1 -0
- package/stubs/graphql/graphql-stubs.js +30 -4
- package/stubs/repositories/repositories-stubs.js +4 -0
- package/stubs/yasgui/query-stubs.js +2 -2
- package/support/import-commands.js +28 -0
- package/fixtures/graphql-editor/graphql-endpoints.json +0 -17
- /package/fixtures/{graphql-editor → graphql/editor}/countries-schema.json +0 -0
- /package/fixtures/{graphql-editor → graphql/editor}/rick-and-morty-schema.json +0 -0
- /package/fixtures/{graphql-editor → queries}/default-query-response.json +0 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
{
|
|
2
|
+
"endpoints": [
|
|
3
|
+
{
|
|
4
|
+
"id": "gqlendpoint1",
|
|
5
|
+
"endpointId": "swapi",
|
|
6
|
+
"endpointURI": "/rest/repositories/swapi/graphql/swapi",
|
|
7
|
+
"label": "SWAPI GraphQL endpoint",
|
|
8
|
+
"description": "SWAPI GraphQL endpoint description",
|
|
9
|
+
"default": false,
|
|
10
|
+
"active": true,
|
|
11
|
+
"lastModified": "2025-01-28",
|
|
12
|
+
"objects_count": 10,
|
|
13
|
+
"properties_count": 120,
|
|
14
|
+
"warnings": 0,
|
|
15
|
+
"errors": 0,
|
|
16
|
+
"status": ""
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"id": "gqlendpoint2",
|
|
20
|
+
"endpointId": "film-restricted",
|
|
21
|
+
"endpointURI": "/rest/repositories/swapi/graphql/film-restricted",
|
|
22
|
+
"label": "SWAPI GraphQL endpoint with restricted film relations",
|
|
23
|
+
"description": "SWAPI GraphQL endpoint with restricted film relations description",
|
|
24
|
+
"default": true,
|
|
25
|
+
"active": true,
|
|
26
|
+
"lastModified": "2025-01-28",
|
|
27
|
+
"objects_count": 13,
|
|
28
|
+
"properties_count": 133,
|
|
29
|
+
"warnings": 0,
|
|
30
|
+
"errors": 0,
|
|
31
|
+
"status": ""
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"id": "gqlendpoint3",
|
|
35
|
+
"endpointId": "swapi-characters",
|
|
36
|
+
"endpointURI": "/rest/repositories/swapi/graphql/swapi-characters",
|
|
37
|
+
"label": "SWAPI GraphQL endpoint for swapi characters",
|
|
38
|
+
"description": "SWAPI GraphQL endpoint for swapi characters description",
|
|
39
|
+
"default": false,
|
|
40
|
+
"active": false,
|
|
41
|
+
"lastModified": "2025-01-28",
|
|
42
|
+
"objects_count": 3,
|
|
43
|
+
"properties_count": 20,
|
|
44
|
+
"warnings": 0,
|
|
45
|
+
"errors": 0,
|
|
46
|
+
"status": ""
|
|
47
|
+
}
|
|
48
|
+
]
|
|
49
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"repository": "test",
|
|
3
|
+
"endpoints": [
|
|
4
|
+
{
|
|
5
|
+
"endpointId": "countries",
|
|
6
|
+
"endpointURI": "/rest/repositories/test/graphql/countries",
|
|
7
|
+
"active": true,
|
|
8
|
+
"default": false
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"endpointId": "rickmorty",
|
|
12
|
+
"endpointURI": "/rest/repositories/test/graphql/rickmorty",
|
|
13
|
+
"active": true,
|
|
14
|
+
"default": false
|
|
15
|
+
}
|
|
16
|
+
]
|
|
17
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"repository": "test",
|
|
3
|
+
"endpoints": [
|
|
4
|
+
{
|
|
5
|
+
"endpointId": "swapi",
|
|
6
|
+
"endpointURI": "/rest/repositories/swapi/graphql/swapi",
|
|
7
|
+
"active": true,
|
|
8
|
+
"default": false
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
"endpointId": "film-restricted",
|
|
12
|
+
"endpointURI": "/rest/repositories/swapi/graphql/film-restricted",
|
|
13
|
+
"active": true,
|
|
14
|
+
"default": true
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"endpointId": "swapi-characters",
|
|
18
|
+
"endpointURI": "/rest/repositories/swapi/graphql/swapi-characters",
|
|
19
|
+
"active": false,
|
|
20
|
+
"default": false
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
}
|
|
@@ -0,0 +1,335 @@
|
|
|
1
|
+
id: /soml/film-restricted
|
|
2
|
+
label: Star Wars API
|
|
3
|
+
creator: http://ontotext.com
|
|
4
|
+
created: 2019-06-15
|
|
5
|
+
updated: 2019-06-16
|
|
6
|
+
versionInfo: 0.1
|
|
7
|
+
|
|
8
|
+
prefixes:
|
|
9
|
+
# common prefixes
|
|
10
|
+
so: "http://www.ontotext.com/semantic-object/"
|
|
11
|
+
voc: "https://swapi.co/vocabulary/"
|
|
12
|
+
dct: "http://purl.org/dc/terms/"
|
|
13
|
+
gn: "http://www.geonames.org/ontology#"
|
|
14
|
+
owl: "http://www.w3.org/2002/07/owl#"
|
|
15
|
+
puml: "http://plantuml.com/ontology#"
|
|
16
|
+
rdf: "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
17
|
+
rdfs: "http://www.w3.org/2000/01/rdf-schema#"
|
|
18
|
+
skos: "http://www.w3.org/2004/02/skos/core#"
|
|
19
|
+
void: "http://rdfs.org/ns/void#"
|
|
20
|
+
wgs84: "http://www.w3.org/2003/01/geo/wgs84_pos#"
|
|
21
|
+
xsd: "http://www.w3.org/2001/XMLSchema#"
|
|
22
|
+
|
|
23
|
+
specialPrefixes:
|
|
24
|
+
base_iri: https://swapi.co/resource/
|
|
25
|
+
vocab_iri: https://swapi.co/vocabulary/
|
|
26
|
+
vocab_prefix: voc
|
|
27
|
+
|
|
28
|
+
objects:
|
|
29
|
+
Species:
|
|
30
|
+
descr: "A group of living organisms consisting of similar individuals capable of exchanging genes or interbreeding"
|
|
31
|
+
type: ["voc:Species"]
|
|
32
|
+
typeProp: "rdf:type"
|
|
33
|
+
name: "rdfs:label"
|
|
34
|
+
props:
|
|
35
|
+
desc: {label: "Description"}
|
|
36
|
+
averageLifespan: {descr: "Lifespan of the species"}
|
|
37
|
+
averageHeight: {descr: "Average height of the species", range: decimal}
|
|
38
|
+
language: {descr: "Species language"}
|
|
39
|
+
skinColor: {descr: "Species skin colour", max: inf}
|
|
40
|
+
hairColor: {descr: "Species hair colour", max: inf}
|
|
41
|
+
eyeColor: {descr: "Species eye colour", max: inf}
|
|
42
|
+
film: {descr: "Films the species appears in", max: inf, range: Film}
|
|
43
|
+
character: {descr: "List of instances of the species", max: inf, range: Character, inverseAlias: "species", rangeCheck: true}
|
|
44
|
+
planet: {descr: "Planet which host the species", max: inf, range: Planet}
|
|
45
|
+
|
|
46
|
+
Film:
|
|
47
|
+
descr: "Star Wars is an American epic space-opera media franchise created by George Lucas. The franchise began with the eponymous 1977 film and quickly became a worldwide pop-culture phenomenon, with many more films."
|
|
48
|
+
type: ["voc:Film"]
|
|
49
|
+
typeProp: "rdf:type"
|
|
50
|
+
name: "rdfs:label"
|
|
51
|
+
props:
|
|
52
|
+
character: {descr: "characters in the film", max: inf, range: Character}
|
|
53
|
+
desc: {label: "Description"}
|
|
54
|
+
director: {descr: "Film Director"}
|
|
55
|
+
episodeId: {range: int}
|
|
56
|
+
releaseDate: {descr: "Film release date", range: date}
|
|
57
|
+
|
|
58
|
+
Planet:
|
|
59
|
+
descr: "The fictional universe of the Star Wars franchise features multiple planets and moons"
|
|
60
|
+
type: ["voc:Planet"]
|
|
61
|
+
typeProp: "rdf:type"
|
|
62
|
+
name: "rdfs:label"
|
|
63
|
+
props:
|
|
64
|
+
desc: {label: "Description"}
|
|
65
|
+
diameter: {label: "Diameter in Km", range: int}
|
|
66
|
+
gravity: {label: "Gravitational pressure m/s squared"}
|
|
67
|
+
orbitalPeriod: {label: "Orbital period in days", range: integer}
|
|
68
|
+
population: {range: integer}
|
|
69
|
+
rotationPeriod: {label: "Rotation period in hours", range: integer}
|
|
70
|
+
surfaceWater: {label: "Surface water in m cubed", range: integer}
|
|
71
|
+
terrain: {label: "Planets terrain"}
|
|
72
|
+
film: {descr: "Films which the planet appeared in", max: inf, range: Film}
|
|
73
|
+
resident: {descr: "Characters which are resident on the planet", range: Character, max: inf}
|
|
74
|
+
climate: {label: "Planets climate"}
|
|
75
|
+
|
|
76
|
+
Vehicle:
|
|
77
|
+
descr: "Fictional Star Wars terrestrial vehicles, including armoured fighting vehicles, military aircraft, and naval ships."
|
|
78
|
+
type: ["voc:Vehicle"]
|
|
79
|
+
typeProp: "rdf:type"
|
|
80
|
+
name: "rdfs:label"
|
|
81
|
+
props:
|
|
82
|
+
cargoCapacity: {label: "Cargo capacity tons", range: int}
|
|
83
|
+
consumables: {label: "Consumables"}
|
|
84
|
+
costInCredits: {label: "Cost in credits", range: int}
|
|
85
|
+
crew: {descr: "Number of crew required to pilot vehicle", range: int}
|
|
86
|
+
desc: {label: "Vehicle description"}
|
|
87
|
+
film: {descr: "Film in which the vehicle appeared", range: Film, max: inf}
|
|
88
|
+
length: {descr: "Length of the vehicle in meters", range: decimal}
|
|
89
|
+
manufacturer: {label: "Vehicle manufacturer"}
|
|
90
|
+
maxAtmospheringSpeed: {label: "Speed in km per hour", range: int}
|
|
91
|
+
model: {label: "Vehicle model"}
|
|
92
|
+
passengers: {label: "Total passenger numbers", range: int}
|
|
93
|
+
vehicleClass: {label: "Vehicle class"}
|
|
94
|
+
pilot: {descr: "Resources that this vehicle has been piloted by.", range: Character, max: inf}
|
|
95
|
+
|
|
96
|
+
Starship:
|
|
97
|
+
descr: "Fictional Star Wars starship, or simply referred to as a ship, was a manned vehicle used for travelling in real-space or hyperspace"
|
|
98
|
+
type: ["voc:Starship"]
|
|
99
|
+
typeProp: "rdf:type"
|
|
100
|
+
name: "rdfs:label"
|
|
101
|
+
props:
|
|
102
|
+
mglt: {label: "The megalight per hour abbreviated MGL) was a unit used to measure the relative sublight speed of starships in realspace. For example, the RZ-1 A-wing interceptor was markedly faster 120 MGLT than the BTL-A4 Y-wing assault starfighter-bomber 70 MGLT", range: integer}
|
|
103
|
+
cargoCapacity: {label: "Cargo capacity tons", range: int}
|
|
104
|
+
consumables: {label: "Consumables"}
|
|
105
|
+
costInCredits: {label: "Cost in credits", range: int}
|
|
106
|
+
crew: {label: "Number of crew required to pilot vehicle", range: int}
|
|
107
|
+
desc: {label: "Vehicle description"}
|
|
108
|
+
film: {descr: "Film in which the Starship appeared", range: Film, max: inf}
|
|
109
|
+
hyperdriveRating: {descr: "The class of this stars hips hyper-drive", range: decimal}
|
|
110
|
+
length: {descr: "The length of this starship in meters.", range: decimal}
|
|
111
|
+
manufacturer: {descr: "The manufacturer of this starship. Comma separated if more than one" }
|
|
112
|
+
maxAtmospheringSpeed: {descr: "The maximum speed of this starship in the atmosphere. \"N/A\" if this starship is incapable of atmospheric flight.", range: int}
|
|
113
|
+
model: {descr: "The model or official name of this starship. Such as \"T-65 X-wing\" or \"DS-1 Orbital Battle Station\"."}
|
|
114
|
+
passengers: {descr: "The number of non-essential people this starship can transport.", range: int}
|
|
115
|
+
pilot: {descr: "Resources that this starship has been piloted by.", range: Character, max: inf}
|
|
116
|
+
starshipClass: {descr: "The class of this starship, such as \"Starfighter\" or \"Deep Space Mobile Battlestation\""}
|
|
117
|
+
|
|
118
|
+
Character:
|
|
119
|
+
kind: abstract
|
|
120
|
+
descr: "A character in a star wars film"
|
|
121
|
+
name: rdfs:label
|
|
122
|
+
typeProp: "rdf:type"
|
|
123
|
+
type: ["voc:Character"]
|
|
124
|
+
props:
|
|
125
|
+
desc: {label: "Description"}
|
|
126
|
+
eyeColor: {descr: "Characters eye colour, including Droid eyes, such as R2-D2's red eye!"}
|
|
127
|
+
hairColor: {descr: "Characters hair colour"}
|
|
128
|
+
skinColor: {descr: "Characters skin colour"}
|
|
129
|
+
birthYear: {descr: "In BBY (Before the Battle of Yalvin) or ABY (After the battle of Yalvin"}
|
|
130
|
+
film: {descr: "Star Wars films appeared in", max: inf, range: Film}
|
|
131
|
+
height: {label: "Height in meters", range: decimal}
|
|
132
|
+
mass: {label: "Mass in Kg", range: decimal}
|
|
133
|
+
homeworld: {label: "Characters homeworld(planet)", range: Planet}
|
|
134
|
+
starship: {label: "Characters starship(s)", max: inf, range: Starship}
|
|
135
|
+
vehicle: {label: "Characters vehicles(s)", max: inf, range: Vehicle}
|
|
136
|
+
species: {label: "Characters species", range: Species, rdfProp: "rdf:type", rangeCheck: true}
|
|
137
|
+
gender: {label: "Gender"}
|
|
138
|
+
|
|
139
|
+
Aleena:
|
|
140
|
+
prefix: "aleena/"
|
|
141
|
+
descr: ""
|
|
142
|
+
inherits: Character
|
|
143
|
+
|
|
144
|
+
Besalisk:
|
|
145
|
+
prefix: "besalisk/"
|
|
146
|
+
descr: ""
|
|
147
|
+
inherits: Character
|
|
148
|
+
|
|
149
|
+
Cerean:
|
|
150
|
+
prefix: "cerean/"
|
|
151
|
+
descr: ""
|
|
152
|
+
inherits: Character
|
|
153
|
+
|
|
154
|
+
Chagrian:
|
|
155
|
+
prefix: "chagrian/"
|
|
156
|
+
descr: ""
|
|
157
|
+
inherits: Character
|
|
158
|
+
|
|
159
|
+
Clawdite:
|
|
160
|
+
prefix: "clawdite/"
|
|
161
|
+
descr: ""
|
|
162
|
+
inherits: Character
|
|
163
|
+
|
|
164
|
+
Droid:
|
|
165
|
+
prefix: "droid/"
|
|
166
|
+
descr: 'A droid is a fictional robot possessing some degree of artificial intelligence in the Star Wars science fiction franchise. Coined by special effects artist John Stears, the term is a clipped form of ""android"",1 a word originally reserved for robots designed to look and act like a human.2 The word ""droid"" has been a registered trademark of Lucasfilm Ltd since 1977.3456'
|
|
167
|
+
inherits: Character
|
|
168
|
+
|
|
169
|
+
Dug:
|
|
170
|
+
prefix: "dug/"
|
|
171
|
+
descr: ''
|
|
172
|
+
inherits: Character
|
|
173
|
+
|
|
174
|
+
Ewok:
|
|
175
|
+
prefix: "ewok/"
|
|
176
|
+
descr: 'Ewoks are a fictional race of small, mammaloid bipeds that appear in the Star Wars universe. They are hunter-gatherers resembling teddy bears that inhabit the forest moon of Endor and live in various arboreal huts and other simple dwellings. They first appeared in the 1983 film Return of the Jedi and have since appeared in two made-for-television films, Caravan of Courage: An Ewok Adventure (1984) and Ewoks: The Battle for Endor (1985), as well as a short-lived animated series and several books and games.'
|
|
177
|
+
inherits: Character
|
|
178
|
+
|
|
179
|
+
Geonosian:
|
|
180
|
+
prefix: "geonosian/"
|
|
181
|
+
descr: ''
|
|
182
|
+
inherits: Character
|
|
183
|
+
|
|
184
|
+
Gungan:
|
|
185
|
+
prefix: "gungan/"
|
|
186
|
+
descr: ''
|
|
187
|
+
inherits: Character
|
|
188
|
+
|
|
189
|
+
Human:
|
|
190
|
+
prefix: "human/"
|
|
191
|
+
descr: 'Modern humans (Homo sapiens, primarily ssp. Homo sapiens sapiens) are the only extant members of the subtribe Hominina, a branch of the tribe Hominini belonging to the family of great apes. They are characterized by erect posture and bipedal locomotion; high manual dexterity and heavy tool use compared to other animals; and a general trend toward larger, more complex brains and societies.34, Early hominins—particularly the australopithecines, whose brains and anatomy are in many ways more similar to ancestral non-human apes—are less often referred to as "human" than hominins of the genus Homo.5 Several of these hominins used fire, occupied much of Eurasia, and gave rise to anatomically modern Homo sapiens in Africa about 200,000 years ago.67 They began to exhibit evidence of behavioral modernity around 50,000 years ago. In several waves of migration, anatomically modern humans ventured out of Africa and populated most of the world.8, The spread of humans and their large and increasing population has had a profound impact on large areas of the environment and millions of native species worldwide. Advantages that explain this evolutionary success include a relatively larger brain with a particularly well-developed neocortex, prefrontal cortex and temporal lobes, which enable high levels of abstract reasoning, language, problem solving, sociality, and culture through social learning. Humans use tools to a much higher degree than any other animal, are the only extant species known to build fires and cook their food, and are the only extant species to clothe themselves and create and use numerous other technologies and arts., Humans are uniquely adept at using systems of symbolic communication (such as language and art) for self-expression and the exchange of ideas, and for organizing themselves into purposeful groups. Humans create complex social structures composed of many cooperating and competing groups, from families and kinship networks to political states. Social interactions between humans have established an extremely wide variety of values,9 social norms, and rituals, which together form the basis of human society. Curiosity and the human desire to understand and influence the environment and to explain and manipulate phenomena (or events) has provided the foundation for developing science, philosophy, mythology, religion, anthropology, and numerous other fields of knowledge., Though most of human existence has been sustained by hunting and gathering in band societies,10 increasing numbers of human societies began to practice sedentary agriculture approximately some 10,000 years ago,11 domesticating plants and animals, thus allowing for the growth of civilization. These human societies subsequently expanded in size, establishing various forms of government, religion, and culture around the world, unifying people within regions to form states and empires. The rapid advancement of scientific and medical understanding in the 19th and 20th centuries led to the development of fuel-driven technologies and increased lifespans, causing the human population to rise exponentially. Today the global human population is estimated by the United Nations to be near 7.6\xa0billion.12'
|
|
192
|
+
inherits: Character
|
|
193
|
+
|
|
194
|
+
Hutt:
|
|
195
|
+
prefix: "hutt/"
|
|
196
|
+
descr: 'The Hutts are a fictional alien race in the Star Wars universe. They appear in The Phantom Menace, Return of the Jedi and The Clone Wars, as well as the special edition release of A New Hope. They also appear in various Star Wars games, including those based on the movies, and the Knights of the Old Republic series. None of these are very friendly and all are criminally involved.1 In the comic book series Tales of the Jedi: Golden Age of the Sith and Tales of the Jedi: The Fall of the Sith Empire, however, there is a Hutt character named Aarrba who is sympathetic to the main characters, Gav and Jori Daragon.'
|
|
197
|
+
inherits: Character
|
|
198
|
+
|
|
199
|
+
Iktotchi:
|
|
200
|
+
prefix: "iktotchi/"
|
|
201
|
+
descr: ''
|
|
202
|
+
inherits: Character
|
|
203
|
+
|
|
204
|
+
Kaleesh:
|
|
205
|
+
prefix: "kaleesh/"
|
|
206
|
+
descr: ''
|
|
207
|
+
inherits: Character
|
|
208
|
+
|
|
209
|
+
Kaminoan:
|
|
210
|
+
prefix: "kaminoan/"
|
|
211
|
+
descr: ''
|
|
212
|
+
inherits: Character
|
|
213
|
+
|
|
214
|
+
Keldor:
|
|
215
|
+
prefix: "keldor/"
|
|
216
|
+
descr: ''
|
|
217
|
+
inherits: Character
|
|
218
|
+
|
|
219
|
+
Mirialan:
|
|
220
|
+
prefix: "mirialan/"
|
|
221
|
+
descr: ''
|
|
222
|
+
inherits: Character
|
|
223
|
+
|
|
224
|
+
Moncalamari:
|
|
225
|
+
prefix: "moncalamari/"
|
|
226
|
+
descr: ''
|
|
227
|
+
inherits: Character
|
|
228
|
+
|
|
229
|
+
Muun:
|
|
230
|
+
prefix: "muun/"
|
|
231
|
+
descr: ''
|
|
232
|
+
inherits: Character
|
|
233
|
+
|
|
234
|
+
Nautolan:
|
|
235
|
+
prefix: "nautolan/"
|
|
236
|
+
descr: ''
|
|
237
|
+
inherits: Character
|
|
238
|
+
|
|
239
|
+
Neimodian:
|
|
240
|
+
prefix: "neimodian/"
|
|
241
|
+
descr: ''
|
|
242
|
+
inherits: Character
|
|
243
|
+
|
|
244
|
+
Pauan:
|
|
245
|
+
prefix: "pauan/"
|
|
246
|
+
descr: ''
|
|
247
|
+
inherits: Character
|
|
248
|
+
|
|
249
|
+
Quermian:
|
|
250
|
+
prefix: "quermian/"
|
|
251
|
+
descr: ''
|
|
252
|
+
inherits: Character
|
|
253
|
+
|
|
254
|
+
Rodian:
|
|
255
|
+
prefix: "rodian/"
|
|
256
|
+
descr: ''
|
|
257
|
+
inherits: Character
|
|
258
|
+
|
|
259
|
+
Skakoan:
|
|
260
|
+
prefix: "skakoan/"
|
|
261
|
+
descr: ''
|
|
262
|
+
inherits: Character
|
|
263
|
+
|
|
264
|
+
Sullustan:
|
|
265
|
+
prefix: "sullustan/"
|
|
266
|
+
descr: ''
|
|
267
|
+
inherits: Character
|
|
268
|
+
|
|
269
|
+
Tholothian:
|
|
270
|
+
prefix: "tholothian/"
|
|
271
|
+
descr: ''
|
|
272
|
+
inherits: Character
|
|
273
|
+
|
|
274
|
+
Togruta:
|
|
275
|
+
prefix: "togruta/"
|
|
276
|
+
descr: ''
|
|
277
|
+
inherits: Character
|
|
278
|
+
|
|
279
|
+
Toong:
|
|
280
|
+
prefix: "toong/"
|
|
281
|
+
descr: ''
|
|
282
|
+
inherits: Character
|
|
283
|
+
|
|
284
|
+
Toydarian:
|
|
285
|
+
prefix: "toydarian/"
|
|
286
|
+
descr: ''
|
|
287
|
+
inherits: Character
|
|
288
|
+
|
|
289
|
+
Trandoshan:
|
|
290
|
+
prefix: "trandoshan/"
|
|
291
|
+
descr: ''
|
|
292
|
+
inherits: Character
|
|
293
|
+
|
|
294
|
+
Twilek:
|
|
295
|
+
prefix: "twilek/"
|
|
296
|
+
descr: ''
|
|
297
|
+
inherits: Character
|
|
298
|
+
|
|
299
|
+
Umbaran:
|
|
300
|
+
prefix: "umbaran/"
|
|
301
|
+
descr: ''
|
|
302
|
+
inherits: Character
|
|
303
|
+
|
|
304
|
+
Vulptereen:
|
|
305
|
+
prefix: "vulptereen/"
|
|
306
|
+
descr: ''
|
|
307
|
+
inherits: Character
|
|
308
|
+
|
|
309
|
+
Wookiee:
|
|
310
|
+
prefix: "wookiee/"
|
|
311
|
+
descr: 'Wookiees (/ˈwʊkiːz/) are a fictional species of intelligent bipeds from the planet Kashyyyk in the Star Wars universe. They are taller, stronger, and hairier than humans and most (if not all) other humanoid species. The most notable Wookiee is Chewbacca, the copilot of Han Solo, who first appeared in the 1977 film Star Wars Episode IV: A New Hope.'
|
|
312
|
+
inherits: Character
|
|
313
|
+
|
|
314
|
+
Xexto:
|
|
315
|
+
prefix: "xexto/"
|
|
316
|
+
descr: ''
|
|
317
|
+
inherits: Character
|
|
318
|
+
|
|
319
|
+
Yodasspecies:
|
|
320
|
+
prefix: "yodasspecies/"
|
|
321
|
+
descr: ''
|
|
322
|
+
inherits: Character
|
|
323
|
+
|
|
324
|
+
Zabrak:
|
|
325
|
+
prefix: "zabrak/"
|
|
326
|
+
descr: ''
|
|
327
|
+
inherits: Character
|
|
328
|
+
|
|
329
|
+
rbac:
|
|
330
|
+
roles:
|
|
331
|
+
Admin:
|
|
332
|
+
description: "Administrator role, can read, write and delete objects and schema"
|
|
333
|
+
actions: [
|
|
334
|
+
"*/*/*",
|
|
335
|
+
]
|