mirror of
https://github.com/BradNut/graphbrainz
synced 2025-09-08 17:40:32 +00:00
Update docs
This commit is contained in:
parent
9601b400b5
commit
ae9330f1d0
3 changed files with 3220 additions and 2543 deletions
147
docs/schema.md
147
docs/schema.md
|
|
@ -84,6 +84,9 @@ type Area implements Node, Entity {
|
|||
# Relationships between this entity and other entitites.
|
||||
relationships: Relationships
|
||||
|
||||
# A list of collections linked to this entity.
|
||||
collections(after: String, first: Int): CollectionConnection
|
||||
|
||||
# A list of tags linked to this entity.
|
||||
tags(after: String, first: Int): TagConnection
|
||||
}
|
||||
|
|
@ -212,6 +215,9 @@ type Artist implements Node, Entity {
|
|||
# Relationships between this entity and other entitites.
|
||||
relationships: Relationships
|
||||
|
||||
# A list of collections linked to this entity.
|
||||
collections(after: String, first: Int): CollectionConnection
|
||||
|
||||
# A list of tags linked to this entity.
|
||||
tags(after: String, first: Int): TagConnection
|
||||
}
|
||||
|
|
@ -502,6 +508,9 @@ type Collection implements Node, Entity {
|
|||
# A list of events linked to this entity.
|
||||
events(after: String, first: Int): EventConnection
|
||||
|
||||
# A list of instruments linked to this entity.
|
||||
instruments(after: String, first: Int): InstrumentConnection
|
||||
|
||||
# A list of labels linked to this entity.
|
||||
labels(after: String, first: Int): LabelConnection
|
||||
|
||||
|
|
@ -530,6 +539,9 @@ type Collection implements Node, Entity {
|
|||
first: Int
|
||||
): ReleaseGroupConnection
|
||||
|
||||
# A list of series linked to this entity.
|
||||
series(after: String, first: Int): SeriesConnection
|
||||
|
||||
# A list of works linked to this entity.
|
||||
works(after: String, first: Int): WorkConnection
|
||||
}
|
||||
|
|
@ -644,6 +656,9 @@ type Event implements Node, Entity {
|
|||
# Relationships between this entity and other entitites.
|
||||
relationships: Relationships
|
||||
|
||||
# A list of collections linked to this entity.
|
||||
collections(after: String, first: Int): CollectionConnection
|
||||
|
||||
# A list of tags linked to this entity.
|
||||
tags(after: String, first: Int): TagConnection
|
||||
}
|
||||
|
|
@ -710,6 +725,9 @@ type Instrument implements Node, Entity {
|
|||
# Relationships between this entity and other entitites.
|
||||
relationships: Relationships
|
||||
|
||||
# A list of collections linked to this entity.
|
||||
collections(after: String, first: Int): CollectionConnection
|
||||
|
||||
# A list of tags linked to this entity.
|
||||
tags(after: String, first: Int): TagConnection
|
||||
}
|
||||
|
|
@ -832,6 +850,9 @@ type Label implements Node, Entity {
|
|||
# Relationships between this entity and other entitites.
|
||||
relationships: Relationships
|
||||
|
||||
# A list of collections linked to this entity.
|
||||
collections(after: String, first: Int): CollectionConnection
|
||||
|
||||
# A list of tags linked to this entity.
|
||||
tags(after: String, first: Int): TagConnection
|
||||
}
|
||||
|
|
@ -1035,6 +1056,9 @@ type Place implements Node, Entity {
|
|||
# Relationships between this entity and other entitites.
|
||||
relationships: Relationships
|
||||
|
||||
# A list of collections linked to this entity.
|
||||
collections(after: String, first: Int): CollectionConnection
|
||||
|
||||
# A list of tags linked to this entity.
|
||||
tags(after: String, first: Int): TagConnection
|
||||
}
|
||||
|
|
@ -1147,6 +1171,9 @@ type Recording implements Node, Entity {
|
|||
# Relationships between this entity and other entitites.
|
||||
relationships: Relationships
|
||||
|
||||
# A list of collections linked to this entity.
|
||||
collections(after: String, first: Int): CollectionConnection
|
||||
|
||||
# A list of tags linked to this entity.
|
||||
tags(after: String, first: Int): TagConnection
|
||||
}
|
||||
|
|
@ -1251,11 +1278,6 @@ type RelationshipEdge {
|
|||
type Relationships {
|
||||
# A list of relationships between these two entity types.
|
||||
areas(
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
|
||||
# Filter by the relationship direction.
|
||||
direction: String
|
||||
|
||||
|
|
@ -1265,15 +1287,14 @@ type Relationships {
|
|||
# The MBID associated with the value of the `type`
|
||||
# field.
|
||||
typeID: MBID
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
): RelationshipConnection
|
||||
|
||||
# A list of relationships between these two entity types.
|
||||
artists(
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
|
||||
# Filter by the relationship direction.
|
||||
direction: String
|
||||
|
||||
|
|
@ -1283,15 +1304,14 @@ type Relationships {
|
|||
# The MBID associated with the value of the `type`
|
||||
# field.
|
||||
typeID: MBID
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
): RelationshipConnection
|
||||
|
||||
# A list of relationships between these two entity types.
|
||||
events(
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
|
||||
# Filter by the relationship direction.
|
||||
direction: String
|
||||
|
||||
|
|
@ -1301,15 +1321,14 @@ type Relationships {
|
|||
# The MBID associated with the value of the `type`
|
||||
# field.
|
||||
typeID: MBID
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
): RelationshipConnection
|
||||
|
||||
# A list of relationships between these two entity types.
|
||||
instruments(
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
|
||||
# Filter by the relationship direction.
|
||||
direction: String
|
||||
|
||||
|
|
@ -1319,15 +1338,14 @@ type Relationships {
|
|||
# The MBID associated with the value of the `type`
|
||||
# field.
|
||||
typeID: MBID
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
): RelationshipConnection
|
||||
|
||||
# A list of relationships between these two entity types.
|
||||
labels(
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
|
||||
# Filter by the relationship direction.
|
||||
direction: String
|
||||
|
||||
|
|
@ -1337,15 +1355,14 @@ type Relationships {
|
|||
# The MBID associated with the value of the `type`
|
||||
# field.
|
||||
typeID: MBID
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
): RelationshipConnection
|
||||
|
||||
# A list of relationships between these two entity types.
|
||||
places(
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
|
||||
# Filter by the relationship direction.
|
||||
direction: String
|
||||
|
||||
|
|
@ -1355,15 +1372,14 @@ type Relationships {
|
|||
# The MBID associated with the value of the `type`
|
||||
# field.
|
||||
typeID: MBID
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
): RelationshipConnection
|
||||
|
||||
# A list of relationships between these two entity types.
|
||||
recordings(
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
|
||||
# Filter by the relationship direction.
|
||||
direction: String
|
||||
|
||||
|
|
@ -1373,15 +1389,14 @@ type Relationships {
|
|||
# The MBID associated with the value of the `type`
|
||||
# field.
|
||||
typeID: MBID
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
): RelationshipConnection
|
||||
|
||||
# A list of relationships between these two entity types.
|
||||
releases(
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
|
||||
# Filter by the relationship direction.
|
||||
direction: String
|
||||
|
||||
|
|
@ -1391,15 +1406,14 @@ type Relationships {
|
|||
# The MBID associated with the value of the `type`
|
||||
# field.
|
||||
typeID: MBID
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
): RelationshipConnection
|
||||
|
||||
# A list of relationships between these two entity types.
|
||||
releaseGroups(
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
|
||||
# Filter by the relationship direction.
|
||||
direction: String
|
||||
|
||||
|
|
@ -1409,15 +1423,14 @@ type Relationships {
|
|||
# The MBID associated with the value of the `type`
|
||||
# field.
|
||||
typeID: MBID
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
): RelationshipConnection
|
||||
|
||||
# A list of relationships between these two entity types.
|
||||
series(
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
|
||||
# Filter by the relationship direction.
|
||||
direction: String
|
||||
|
||||
|
|
@ -1427,15 +1440,14 @@ type Relationships {
|
|||
# The MBID associated with the value of the `type`
|
||||
# field.
|
||||
typeID: MBID
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
): RelationshipConnection
|
||||
|
||||
# A list of relationships between these two entity types.
|
||||
urls(
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
|
||||
# Filter by the relationship direction.
|
||||
direction: String
|
||||
|
||||
|
|
@ -1445,15 +1457,14 @@ type Relationships {
|
|||
# The MBID associated with the value of the `type`
|
||||
# field.
|
||||
typeID: MBID
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
): RelationshipConnection
|
||||
|
||||
# A list of relationships between these two entity types.
|
||||
works(
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
|
||||
# Filter by the relationship direction.
|
||||
direction: String
|
||||
|
||||
|
|
@ -1463,6 +1474,10 @@ type Relationships {
|
|||
# The MBID associated with the value of the `type`
|
||||
# field.
|
||||
typeID: MBID
|
||||
after: String
|
||||
first: Int
|
||||
before: String
|
||||
last: Int
|
||||
): RelationshipConnection
|
||||
}
|
||||
|
||||
|
|
@ -1556,6 +1571,9 @@ type Release implements Node, Entity {
|
|||
# Relationships between this entity and other entitites.
|
||||
relationships: Relationships
|
||||
|
||||
# A list of collections linked to this entity.
|
||||
collections(after: String, first: Int): CollectionConnection
|
||||
|
||||
# A list of tags linked to this entity.
|
||||
tags(after: String, first: Int): TagConnection
|
||||
}
|
||||
|
|
@ -1662,6 +1680,9 @@ type ReleaseGroup implements Node, Entity {
|
|||
# Relationships between this entity and other entitites.
|
||||
relationships: Relationships
|
||||
|
||||
# A list of collections linked to this entity.
|
||||
collections(after: String, first: Int): CollectionConnection
|
||||
|
||||
# A list of tags linked to this entity.
|
||||
tags(after: String, first: Int): TagConnection
|
||||
}
|
||||
|
|
@ -1925,6 +1946,9 @@ type Series implements Node, Entity {
|
|||
# Relationships between this entity and other entitites.
|
||||
relationships: Relationships
|
||||
|
||||
# A list of collections linked to this entity.
|
||||
collections(after: String, first: Int): CollectionConnection
|
||||
|
||||
# A list of tags linked to this entity.
|
||||
tags(after: String, first: Int): TagConnection
|
||||
}
|
||||
|
|
@ -2055,6 +2079,9 @@ type Work implements Node, Entity {
|
|||
# Relationships between this entity and other entitites.
|
||||
relationships: Relationships
|
||||
|
||||
# A list of collections linked to this entity.
|
||||
collections(after: String, first: Int): CollectionConnection
|
||||
|
||||
# A list of tags linked to this entity.
|
||||
tags(after: String, first: Int): TagConnection
|
||||
}
|
||||
|
|
|
|||
605
docs/types.md
605
docs/types.md
|
|
@ -366,6 +366,23 @@ the codes assigned by ISO to countries and subdivisions.
|
|||
Relationships between this entity and other entitites.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>collections</strong> </td>
|
||||
<td valign="top"><a href="#collectionconnection">CollectionConnection</a></td>
|
||||
<td>
|
||||
A list of collections linked to this entity.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">first</td>
|
||||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>tags</strong> </td>
|
||||
<td valign="top"><a href="#tagconnection">TagConnection</a></td>
|
||||
|
|
@ -692,6 +709,23 @@ field.
|
|||
Relationships between this entity and other entitites.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>collections</strong> </td>
|
||||
<td valign="top"><a href="#collectionconnection">CollectionConnection</a></td>
|
||||
<td>
|
||||
A list of collections linked to this entity.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">first</td>
|
||||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>tags</strong> </td>
|
||||
<td valign="top"><a href="#tagconnection">TagConnection</a></td>
|
||||
|
|
@ -1363,6 +1397,23 @@ field.
|
|||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>instruments</strong> </td>
|
||||
<td valign="top"><a href="#instrumentconnection">InstrumentConnection</a></td>
|
||||
<td>
|
||||
A list of instruments linked to this entity.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">first</td>
|
||||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>labels</strong> </td>
|
||||
<td valign="top"><a href="#labelconnection">LabelConnection</a></td>
|
||||
|
|
@ -1463,6 +1514,23 @@ field.
|
|||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>series</strong> </td>
|
||||
<td valign="top"><a href="#seriesconnection">SeriesConnection</a></td>
|
||||
<td>
|
||||
A list of series linked to this entity.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">first</td>
|
||||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>works</strong> </td>
|
||||
<td valign="top"><a href="#workconnection">WorkConnection</a></td>
|
||||
|
|
@ -1681,6 +1749,23 @@ field.
|
|||
Relationships between this entity and other entitites.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>collections</strong> </td>
|
||||
<td valign="top"><a href="#collectionconnection">CollectionConnection</a></td>
|
||||
<td>
|
||||
A list of collections linked to this entity.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">first</td>
|
||||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>tags</strong> </td>
|
||||
<td valign="top"><a href="#tagconnection">TagConnection</a></td>
|
||||
|
|
@ -1851,6 +1936,23 @@ field.
|
|||
Relationships between this entity and other entitites.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>collections</strong> </td>
|
||||
<td valign="top"><a href="#collectionconnection">CollectionConnection</a></td>
|
||||
<td>
|
||||
A list of collections linked to this entity.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">first</td>
|
||||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>tags</strong> </td>
|
||||
<td valign="top"><a href="#tagconnection">TagConnection</a></td>
|
||||
|
|
@ -2086,6 +2188,23 @@ field.
|
|||
Relationships between this entity and other entitites.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>collections</strong> </td>
|
||||
<td valign="top"><a href="#collectionconnection">CollectionConnection</a></td>
|
||||
<td>
|
||||
A list of collections linked to this entity.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">first</td>
|
||||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>tags</strong> </td>
|
||||
<td valign="top"><a href="#tagconnection">TagConnection</a></td>
|
||||
|
|
@ -2544,6 +2663,23 @@ field.
|
|||
Relationships between this entity and other entitites.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>collections</strong> </td>
|
||||
<td valign="top"><a href="#collectionconnection">CollectionConnection</a></td>
|
||||
<td>
|
||||
A list of collections linked to this entity.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">first</td>
|
||||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>tags</strong> </td>
|
||||
<td valign="top"><a href="#tagconnection">TagConnection</a></td>
|
||||
|
|
@ -2785,6 +2921,23 @@ from the lengths of the tracks using it.
|
|||
Relationships between this entity and other entitites.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>collections</strong> </td>
|
||||
<td valign="top"><a href="#collectionconnection">CollectionConnection</a></td>
|
||||
<td>
|
||||
A list of collections linked to this entity.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">first</td>
|
||||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>tags</strong> </td>
|
||||
<td valign="top"><a href="#tagconnection">TagConnection</a></td>
|
||||
|
|
@ -3060,6 +3213,22 @@ Lists of entity relationships for each entity type.
|
|||
A list of relationships between these two entity types.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
|
|
@ -3080,22 +3249,6 @@ Lists of entity relationships for each entity type.
|
|||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>artists</strong> </td>
|
||||
<td valign="top"><a href="#relationshipconnection">RelationshipConnection</a></td>
|
||||
|
|
@ -3103,6 +3256,22 @@ field.</td>
|
|||
A list of relationships between these two entity types.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
|
|
@ -3123,22 +3292,6 @@ field.</td>
|
|||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>events</strong> </td>
|
||||
<td valign="top"><a href="#relationshipconnection">RelationshipConnection</a></td>
|
||||
|
|
@ -3146,6 +3299,22 @@ field.</td>
|
|||
A list of relationships between these two entity types.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
|
|
@ -3166,22 +3335,6 @@ field.</td>
|
|||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>instruments</strong> </td>
|
||||
<td valign="top"><a href="#relationshipconnection">RelationshipConnection</a></td>
|
||||
|
|
@ -3189,6 +3342,22 @@ field.</td>
|
|||
A list of relationships between these two entity types.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
|
|
@ -3209,22 +3378,6 @@ field.</td>
|
|||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>labels</strong> </td>
|
||||
<td valign="top"><a href="#relationshipconnection">RelationshipConnection</a></td>
|
||||
|
|
@ -3232,6 +3385,22 @@ field.</td>
|
|||
A list of relationships between these two entity types.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
|
|
@ -3252,22 +3421,6 @@ field.</td>
|
|||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>places</strong> </td>
|
||||
<td valign="top"><a href="#relationshipconnection">RelationshipConnection</a></td>
|
||||
|
|
@ -3275,6 +3428,22 @@ field.</td>
|
|||
A list of relationships between these two entity types.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
|
|
@ -3295,22 +3464,6 @@ field.</td>
|
|||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>recordings</strong> </td>
|
||||
<td valign="top"><a href="#relationshipconnection">RelationshipConnection</a></td>
|
||||
|
|
@ -3318,6 +3471,22 @@ field.</td>
|
|||
A list of relationships between these two entity types.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
|
|
@ -3338,22 +3507,6 @@ field.</td>
|
|||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>releases</strong> </td>
|
||||
<td valign="top"><a href="#relationshipconnection">RelationshipConnection</a></td>
|
||||
|
|
@ -3361,6 +3514,22 @@ field.</td>
|
|||
A list of relationships between these two entity types.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
|
|
@ -3381,22 +3550,6 @@ field.</td>
|
|||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>releaseGroups</strong> </td>
|
||||
<td valign="top"><a href="#relationshipconnection">RelationshipConnection</a></td>
|
||||
|
|
@ -3404,6 +3557,22 @@ field.</td>
|
|||
A list of relationships between these two entity types.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
|
|
@ -3424,22 +3593,6 @@ field.</td>
|
|||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>series</strong> </td>
|
||||
<td valign="top"><a href="#relationshipconnection">RelationshipConnection</a></td>
|
||||
|
|
@ -3447,6 +3600,22 @@ field.</td>
|
|||
A list of relationships between these two entity types.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
|
|
@ -3467,22 +3636,6 @@ field.</td>
|
|||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>urls</strong> </td>
|
||||
<td valign="top"><a href="#relationshipconnection">RelationshipConnection</a></td>
|
||||
|
|
@ -3490,6 +3643,22 @@ field.</td>
|
|||
A list of relationships between these two entity types.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
|
|
@ -3510,22 +3679,6 @@ field.</td>
|
|||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>works</strong> </td>
|
||||
<td valign="top"><a href="#relationshipconnection">RelationshipConnection</a></td>
|
||||
|
|
@ -3533,6 +3686,22 @@ field.</td>
|
|||
A list of relationships between these two entity types.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
|
|
@ -3553,22 +3722,6 @@ field.</td>
|
|||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">direction</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship direction.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">type</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td>Filter by the relationship type.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">typeID</td>
|
||||
<td valign="top"><a href="#mbid">MBID</a></td>
|
||||
<td>The MBID associated with the value of the <code>type</code>
|
||||
field.</td>
|
||||
</tr>
|
||||
</tbody></table>
|
||||
|
||||
### Release
|
||||
|
|
@ -3804,6 +3957,23 @@ It is not a mark of how good or bad the music itself is – for that, use
|
|||
Relationships between this entity and other entitites.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>collections</strong> </td>
|
||||
<td valign="top"><a href="#collectionconnection">CollectionConnection</a></td>
|
||||
<td>
|
||||
A list of collections linked to this entity.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">first</td>
|
||||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>tags</strong> </td>
|
||||
<td valign="top"><a href="#tagconnection">TagConnection</a></td>
|
||||
|
|
@ -4087,6 +4257,23 @@ field.
|
|||
Relationships between this entity and other entitites.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>collections</strong> </td>
|
||||
<td valign="top"><a href="#collectionconnection">CollectionConnection</a></td>
|
||||
<td>
|
||||
A list of collections linked to this entity.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">first</td>
|
||||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>tags</strong> </td>
|
||||
<td valign="top"><a href="#tagconnection">TagConnection</a></td>
|
||||
|
|
@ -4506,6 +4693,23 @@ field.
|
|||
Relationships between this entity and other entitites.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>collections</strong> </td>
|
||||
<td valign="top"><a href="#collectionconnection">CollectionConnection</a></td>
|
||||
<td>
|
||||
A list of collections linked to this entity.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">first</td>
|
||||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>tags</strong> </td>
|
||||
<td valign="top"><a href="#tagconnection">TagConnection</a></td>
|
||||
|
|
@ -4840,6 +5044,23 @@ field.
|
|||
Relationships between this entity and other entitites.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>collections</strong> </td>
|
||||
<td valign="top"><a href="#collectionconnection">CollectionConnection</a></td>
|
||||
<td>
|
||||
A list of collections linked to this entity.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">after</td>
|
||||
<td valign="top"><a href="#string">String</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top">first</td>
|
||||
<td valign="top"><a href="#int">Int</a></td>
|
||||
<td></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"><strong>tags</strong> </td>
|
||||
<td valign="top"><a href="#tagconnection">TagConnection</a></td>
|
||||
|
|
|
|||
5011
schema.json
5011
schema.json
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue