MultiBaseCS GraphQL API Documentation
Welcome to the MultiBaseCS GraphQL API Documentation!
You can use this documentation to understand how to use the MultiBaseCS GraphQL API and implement it in your own application to integrate with MultiBaseCS.
If you encounter any issues or have questions about the API, our team is here to help. Please keep in mind that support services are available, but they are not provided free of charge.
API Endpoints
https://api.multibasecs.de/graphql
Playground
All queries and mutations can be tested in the playground. It is a graphical, interactive, in-browser GraphQL IDE. The playground is available at https://api.multibasecs.de/graphiql. It features a schema explorer, auto-completion and syntax highlighting.
Live Demo
Authorization
Authentication with OpenID Connect
Our GraphQL API uses OpenID Connect for authentication and authorization. In order to access the API, you need to authenticate against our authentication server to obtain an access token.
Note: To create an application that uses the API, you must first obtain a client_id
and client_secret
by contacting the MultiBaseCS Team.
OpenID Connect Endpoint
Our OpenID Connect endpoint is:
https://auth.34u.de/realms/multibasecs/protocol/openid-connect/
Steps for Authenticating and Accessing the API
1. Obtain an Access Token
To interact with the API, your application must authenticate via OpenID Connect to obtain an access token. Tokens are retrieved from the Token Endpoint of the OpenID Connect flow.
Token Endpoint
POST https://auth.34u.de/realms/multibasecs/protocol/openid-connect/token
Request Parameters
- grant_type:
password
- scope:
openid
- client_id: Your application's client ID (contact the MultiBaseCS Team).
- client_secret: The client secret (contact the MultiBaseCS Team).
- username: The user’s MultiBaseCS Account username.
- password: The user’s MultiBaseCS Account password.
Example Request
This example demonstrates how to request an access token using the password
grant type.
// curl --request POST \
// --url https://auth.34u.de/realms/multibasecs/protocol/openid-connect/token \
// --header 'content-type: application/x-www-form-urlencoded' \
// --data 'grant_type=password&client_id=<your-client-id>&client_secret=<your-client-secret>&scope=openid&username=<username>&password=<password>'
Response Example
// {
// "access_token": "<your-access-token>",
// "expires_in": 300,
// "refresh_token": "<your-refresh-token>",
// "token_type": "Bearer",
// "scope": "openid"
// }
2. Access the GraphQL API
Once you have obtained an access token, you must include it in the Authorization
header for every request to the GraphQL API.
Example Request
// curl --request POST \
// --url https://your-graphql-api.com/graphql \
// --header 'Authorization: Bearer <your-access-token>' \
// --header 'Content-Type: application/json' \
// --data '{"query":"query { ... }"}'
3. Refresh the Access Token
Access tokens are short-lived. To avoid frequent logins, use the refresh_token
to obtain a new access token.
Refresh Token Endpoint
POST https://auth.34u.de/realms/multibasecs/protocol/openid-connect/token
Request Parameters
grant_type
: Set this torefresh_token
.client_id
: Your client ID.client_secret
: Your client secret.refresh_token
: The refresh token you received during authentication.
Example Request
// curl --request POST \
// --url https://auth.34u.de/realms/multibasecs/protocol/openid-connect/token \
// --header 'content-type: application/x-www-form-urlencoded' \
// --data 'grant_type=refresh_token&client_id=<your-client-id>&client_secret=<your-client-secret>&refresh_token=<your-refresh-token>'
Response Example
// {
// "access_token": "<new-access-token>",
// "expires_in": 300,
// "refresh_token": "<new-refresh-token>",
// "token_type": "Bearer",
// "scope": "openid"
// }
4. Logging Out
To log a user out and invalidate their session, you must revoke their refresh token.
Logout Endpoint
POST https://auth.34u.de/realms/multibasecs/protocol/openid-connect/logout
Request Parameters
client_id
: Your client ID.client_secret
: Your client secret.refresh_token
: The user's refresh token.
Example Request
// curl --request POST \
// --url https://auth.34u.de/realms/multibasecs/protocol/openid-connect/logout \
// --header 'content-type: application/x-www-form-urlencoded' \
// --data 'client_id=<your-client-id>&client_secret=<your-client-secret>&refresh_token=<user-refresh-token>'
Error Handling
If a request is made without a valid token, the API will respond with a 401 Unauthorized
status code.
Example Error Response
// {
// "errors": [
// {
// "message": "Unauthorized",
// "locations": [
// {
// "line": 2,
// "column": 3
// }
// ],
// "path": ["Clouds"],
// "extensions": {
// "code": "UNAUTHENTICATED"
// }
// }
// ],
// "data": null
// }
If a request is made with a valid token, but the user does not have the permission to access the requested data, the API will respond with a 403 Forbidden
status code.
Example Error Response
// {
// "errors": [
// {
// "message": "Forbidden",
// "locations": [
// {
// "line": 2,
// "column": 3
// }
// ],
// "path": ["Clouds"],
// "extensions": {
// "code": "FORBIDDEN"
// }
// }
// ],
// "data": null
// }
Queries
Behaviour
Response
Returns a Behaviour!
Arguments
Name | Description |
---|---|
id - Int!
|
Behaviour ID |
Example
Query
query Behaviour($id: Int!) {
Behaviour(id: $id) {
Beschreibung
Categories {
...CategoryFragment
}
Flag_1
Flag_2
Flag_3
Flag_4
Flag_5
Flag_6
Flag_7
Flag_Deleted
Flag_Sync
Flag_Visible
GUID_Verhalten
ID_Verhalten
ID_Version
Kuerzel
Modul_1
Modul_2
Modul_3
Modul_4
Modul_5
Modul_6
Modul_7
Modul_8
Modul_9
Modul_10
Modul_11
Modul_12
Modul_13
Modul_14
Modul_15
RefID
Verhalten
}
}
Variables
{"id": 987}
Response
{
"data": {
"Behaviour": {
"Beschreibung": "abc123",
"Categories": [Category],
"Flag_1": true,
"Flag_2": true,
"Flag_3": true,
"Flag_4": true,
"Flag_5": true,
"Flag_6": false,
"Flag_7": false,
"Flag_Deleted": true,
"Flag_Sync": false,
"Flag_Visible": false,
"GUID_Verhalten": "xyz789",
"ID_Verhalten": 987,
"ID_Version": 123,
"Kuerzel": "xyz789",
"Modul_1": true,
"Modul_2": true,
"Modul_3": true,
"Modul_4": false,
"Modul_5": false,
"Modul_6": true,
"Modul_7": false,
"Modul_8": false,
"Modul_9": true,
"Modul_10": false,
"Modul_11": false,
"Modul_12": false,
"Modul_13": true,
"Modul_14": true,
"Modul_15": true,
"RefID": 123,
"Verhalten": "abc123"
}
}
}
Behaviours
Response
Returns [Behaviour!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - BehavioursOrderByInput
|
|
where - BehavioursFilterInput
|
Example
Query
query Behaviours(
$limit: Int,
$offset: Int,
$orderBy: BehavioursOrderByInput,
$where: BehavioursFilterInput
) {
Behaviours(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Beschreibung
Categories {
...CategoryFragment
}
Flag_1
Flag_2
Flag_3
Flag_4
Flag_5
Flag_6
Flag_7
Flag_Deleted
Flag_Sync
Flag_Visible
GUID_Verhalten
ID_Verhalten
ID_Version
Kuerzel
Modul_1
Modul_2
Modul_3
Modul_4
Modul_5
Modul_6
Modul_7
Modul_8
Modul_9
Modul_10
Modul_11
Modul_12
Modul_13
Modul_14
Modul_15
RefID
Verhalten
}
}
Variables
{
"limit": 987,
"offset": 987,
"orderBy": BehavioursOrderByInput,
"where": BehavioursFilterInput
}
Response
{
"data": {
"Behaviours": [
{
"Beschreibung": "xyz789",
"Categories": [Category],
"Flag_1": true,
"Flag_2": false,
"Flag_3": true,
"Flag_4": true,
"Flag_5": true,
"Flag_6": true,
"Flag_7": true,
"Flag_Deleted": false,
"Flag_Sync": false,
"Flag_Visible": true,
"GUID_Verhalten": "xyz789",
"ID_Verhalten": 987,
"ID_Version": 987,
"Kuerzel": "xyz789",
"Modul_1": true,
"Modul_2": true,
"Modul_3": true,
"Modul_4": false,
"Modul_5": false,
"Modul_6": false,
"Modul_7": false,
"Modul_8": true,
"Modul_9": true,
"Modul_10": false,
"Modul_11": true,
"Modul_12": true,
"Modul_13": true,
"Modul_14": true,
"Modul_15": false,
"RefID": 987,
"Verhalten": "abc123"
}
]
}
}
Categories
Response
Returns [Category!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - CategoriesOrderByInput
|
|
where - CategoriesFilterInput
|
Example
Query
query Categories(
$limit: Int,
$offset: Int,
$orderBy: CategoriesOrderByInput,
$where: CategoriesFilterInput
) {
Categories(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Behaviours {
...BehaviourFragment
}
Beschreibung
Flag_Deleted
Flag_Sync
Groups {
...GroupFragment
}
ID_Kategorie
ID_Version
IdentificationMethods {
...IdentificationMethodFragment
}
Kategorie
ReproductionTypes {
...ReproductionTypeFragment
}
Species {
...SpeciesFragment
}
Units {
...UnitFragment
}
}
}
Variables
{
"limit": 123,
"offset": 987,
"orderBy": CategoriesOrderByInput,
"where": CategoriesFilterInput
}
Response
{
"data": {
"Categories": [
{
"Behaviours": [Behaviour],
"Beschreibung": "xyz789",
"Flag_Deleted": true,
"Flag_Sync": false,
"Groups": [Group],
"ID_Kategorie": 987,
"ID_Version": 123,
"IdentificationMethods": [IdentificationMethod],
"Kategorie": "abc123",
"ReproductionTypes": [ReproductionType],
"Species": [Species],
"Units": [Unit]
}
]
}
}
Category
Example
Query
query Category($id: Int!) {
Category(id: $id) {
Behaviours {
...BehaviourFragment
}
Beschreibung
Flag_Deleted
Flag_Sync
Groups {
...GroupFragment
}
ID_Kategorie
ID_Version
IdentificationMethods {
...IdentificationMethodFragment
}
Kategorie
ReproductionTypes {
...ReproductionTypeFragment
}
Species {
...SpeciesFragment
}
Units {
...UnitFragment
}
}
}
Variables
{"id": 123}
Response
{
"data": {
"Category": {
"Behaviours": [Behaviour],
"Beschreibung": "xyz789",
"Flag_Deleted": false,
"Flag_Sync": true,
"Groups": [Group],
"ID_Kategorie": 123,
"ID_Version": 987,
"IdentificationMethods": [IdentificationMethod],
"Kategorie": "abc123",
"ReproductionTypes": [ReproductionType],
"Species": [Species],
"Units": [Unit]
}
}
}
Cloud
Example
Query
query Cloud($id: Int!) {
Cloud(id: $id) {
Bezeichnung
Count_Daten
ID_Cloud
MaxCount_Daten
Observations {
...ObservationFragment
}
Observers {
...ObserverFragment
}
ReportingPortals {
...ReportingPortalFragment
}
}
}
Variables
{"id": 123}
Response
{
"data": {
"Cloud": {
"Bezeichnung": "xyz789",
"Count_Daten": 123.45,
"ID_Cloud": 123.45,
"MaxCount_Daten": 123.45,
"Observations": [Observation],
"Observers": [Observer],
"ReportingPortals": [ReportingPortal]
}
}
}
Clouds
Response
Returns [Cloud!]!
Example
Query
query Clouds {
Clouds {
Bezeichnung
Count_Daten
ID_Cloud
MaxCount_Daten
Observations {
...ObservationFragment
}
Observers {
...ObserverFragment
}
ReportingPortals {
...ReportingPortalFragment
}
}
}
Response
{
"data": {
"Clouds": [
{
"Bezeichnung": "xyz789",
"Count_Daten": 123.45,
"ID_Cloud": 123.45,
"MaxCount_Daten": 123.45,
"Observations": [Observation],
"Observers": [Observer],
"ReportingPortals": [ReportingPortal]
}
]
}
}
FFHHabitatType
Response
Returns an FFHHabitatType!
Arguments
Name | Description |
---|---|
id - Int!
|
Habitat type ID |
Example
Query
query FFHHabitatType($id: Int!) {
FFHHabitatType(id: $id) {
Bezeichnung
CodeFFH
FFHHabitatTypeCriteria {
...FFHHabitatTypeCriterionFragment
}
FFHHabitatTypeSpecies {
...FFHHabitatTypeSpeciesFragment
}
Flag_Deleted
ID_LRT
ID_Version
}
}
Variables
{"id": 123}
Response
{
"data": {
"FFHHabitatType": {
"Bezeichnung": "xyz789",
"CodeFFH": "abc123",
"FFHHabitatTypeCriteria": [FFHHabitatTypeCriterion],
"FFHHabitatTypeSpecies": [FFHHabitatTypeSpecies],
"Flag_Deleted": true,
"ID_LRT": 123,
"ID_Version": 123.45
}
}
}
FFHHabitatTypeCriteria
Response
Returns [FFHHabitatTypeCriterion!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - FFHHabitatTypeCriteriaOrderByInput
|
|
where - FFHHabitatTypeCriteriaFilterInput
|
Example
Query
query FFHHabitatTypeCriteria(
$limit: Int,
$offset: Int,
$orderBy: FFHHabitatTypeCriteriaOrderByInput,
$where: FFHHabitatTypeCriteriaFilterInput
) {
FFHHabitatTypeCriteria(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
A
B
C
Einheit
FFHHabitatType {
...FFHHabitatTypeFragment
}
FFHHabitatTypeCriterionSpeciesList {
...FFHHabitatTypeCriterionSpeciesListFragment
}
Flag_20001
Flag_20002
Flag_20003
Flag_20004
Flag_20005
Flag_20006
Flag_20007
Flag_20008
Flag_20009
Flag_20010
Flag_20011
Flag_20012
Flag_20013
Flag_20014
Flag_20015
Flag_20016
Flag_20017
Flag_Begruendung
Flag_Deleted
Grenze_A
Grenze_C
ID_DataType
ID_KBSLRT
ID_KBSLRTGruppe
ID_KBSLRT_Prev
ID_LRT
ID_LRTArtenliste
ID_Mapping
ID_Sort
ID_Version
IDs_Required
JahrBis
JahrVon
Kriterium
Kriterium_Info
}
}
Variables
{
"limit": 123,
"offset": 987,
"orderBy": FFHHabitatTypeCriteriaOrderByInput,
"where": FFHHabitatTypeCriteriaFilterInput
}
Response
{
"data": {
"FFHHabitatTypeCriteria": [
{
"A": "xyz789",
"B": "xyz789",
"C": "xyz789",
"Einheit": "xyz789",
"FFHHabitatType": FFHHabitatType,
"FFHHabitatTypeCriterionSpeciesList": FFHHabitatTypeCriterionSpeciesList,
"Flag_20001": false,
"Flag_20002": false,
"Flag_20003": true,
"Flag_20004": true,
"Flag_20005": false,
"Flag_20006": true,
"Flag_20007": false,
"Flag_20008": true,
"Flag_20009": false,
"Flag_20010": false,
"Flag_20011": false,
"Flag_20012": true,
"Flag_20013": false,
"Flag_20014": false,
"Flag_20015": true,
"Flag_20016": false,
"Flag_20017": true,
"Flag_Begruendung": false,
"Flag_Deleted": false,
"Grenze_A": 123.45,
"Grenze_C": 123.45,
"ID_DataType": 987.65,
"ID_KBSLRT": 987,
"ID_KBSLRTGruppe": 987.65,
"ID_KBSLRT_Prev": 123.45,
"ID_LRT": 123,
"ID_LRTArtenliste": 123.45,
"ID_Mapping": 987.65,
"ID_Sort": 123.45,
"ID_Version": 987.65,
"IDs_Required": "xyz789",
"JahrBis": 987.65,
"JahrVon": 987.65,
"Kriterium": "xyz789",
"Kriterium_Info": "abc123"
}
]
}
}
FFHHabitatTypeCriterion
Response
Returns an FFHHabitatTypeCriterion!
Arguments
Name | Description |
---|---|
id - Int!
|
Criterion ID |
Example
Query
query FFHHabitatTypeCriterion($id: Int!) {
FFHHabitatTypeCriterion(id: $id) {
A
B
C
Einheit
FFHHabitatType {
...FFHHabitatTypeFragment
}
FFHHabitatTypeCriterionSpeciesList {
...FFHHabitatTypeCriterionSpeciesListFragment
}
Flag_20001
Flag_20002
Flag_20003
Flag_20004
Flag_20005
Flag_20006
Flag_20007
Flag_20008
Flag_20009
Flag_20010
Flag_20011
Flag_20012
Flag_20013
Flag_20014
Flag_20015
Flag_20016
Flag_20017
Flag_Begruendung
Flag_Deleted
Grenze_A
Grenze_C
ID_DataType
ID_KBSLRT
ID_KBSLRTGruppe
ID_KBSLRT_Prev
ID_LRT
ID_LRTArtenliste
ID_Mapping
ID_Sort
ID_Version
IDs_Required
JahrBis
JahrVon
Kriterium
Kriterium_Info
}
}
Variables
{"id": 987}
Response
{
"data": {
"FFHHabitatTypeCriterion": {
"A": "abc123",
"B": "abc123",
"C": "xyz789",
"Einheit": "abc123",
"FFHHabitatType": FFHHabitatType,
"FFHHabitatTypeCriterionSpeciesList": FFHHabitatTypeCriterionSpeciesList,
"Flag_20001": false,
"Flag_20002": true,
"Flag_20003": true,
"Flag_20004": true,
"Flag_20005": true,
"Flag_20006": true,
"Flag_20007": false,
"Flag_20008": true,
"Flag_20009": false,
"Flag_20010": false,
"Flag_20011": true,
"Flag_20012": false,
"Flag_20013": true,
"Flag_20014": true,
"Flag_20015": false,
"Flag_20016": true,
"Flag_20017": false,
"Flag_Begruendung": true,
"Flag_Deleted": true,
"Grenze_A": 987.65,
"Grenze_C": 987.65,
"ID_DataType": 987.65,
"ID_KBSLRT": 987,
"ID_KBSLRTGruppe": 123.45,
"ID_KBSLRT_Prev": 123.45,
"ID_LRT": 987,
"ID_LRTArtenliste": 123.45,
"ID_Mapping": 123.45,
"ID_Sort": 123.45,
"ID_Version": 987.65,
"IDs_Required": "abc123",
"JahrBis": 123.45,
"JahrVon": 123.45,
"Kriterium": "abc123",
"Kriterium_Info": "abc123"
}
}
}
FFHHabitatTypeCriterionSpeciesList
Response
Returns an FFHHabitatTypeCriterionSpeciesList!
Arguments
Name | Description |
---|---|
id - Int!
|
Species list ID |
Example
Query
query FFHHabitatTypeCriterionSpeciesList($id: Int!) {
FFHHabitatTypeCriterionSpeciesList(id: $id) {
Beschreibung
Bezeichnung
FFHHabitatTypeCriteria {
...FFHHabitatTypeCriterionFragment
}
FFHHabitatTypeSpecies {
...FFHHabitatTypeSpeciesFragment
}
Flag_Deleted
Flag_Sync
Flag_Visible
ID_LRTArtenliste
ID_Version
QueryAdditional_ID_LRT
QueryArten
QueryLRTArten
}
}
Variables
{"id": 987}
Response
{
"data": {
"FFHHabitatTypeCriterionSpeciesList": {
"Beschreibung": "abc123",
"Bezeichnung": "xyz789",
"FFHHabitatTypeCriteria": [FFHHabitatTypeCriterion],
"FFHHabitatTypeSpecies": [FFHHabitatTypeSpecies],
"Flag_Deleted": false,
"Flag_Sync": false,
"Flag_Visible": true,
"ID_LRTArtenliste": 4,
"ID_Version": 123,
"QueryAdditional_ID_LRT": "abc123",
"QueryArten": "abc123",
"QueryLRTArten": "abc123"
}
}
}
FFHHabitatTypeCriterionSpeciesLists
Response
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - FFHHabitatTypeCriterionSpeciesListsOrderByInput
|
|
where - FFHHabitatTypeCriterionSpeciesListsFilterInput
|
Example
Query
query FFHHabitatTypeCriterionSpeciesLists(
$limit: Int,
$offset: Int,
$orderBy: FFHHabitatTypeCriterionSpeciesListsOrderByInput,
$where: FFHHabitatTypeCriterionSpeciesListsFilterInput
) {
FFHHabitatTypeCriterionSpeciesLists(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Beschreibung
Bezeichnung
FFHHabitatTypeCriteria {
...FFHHabitatTypeCriterionFragment
}
FFHHabitatTypeSpecies {
...FFHHabitatTypeSpeciesFragment
}
Flag_Deleted
Flag_Sync
Flag_Visible
ID_LRTArtenliste
ID_Version
QueryAdditional_ID_LRT
QueryArten
QueryLRTArten
}
}
Variables
{
"limit": 123,
"offset": 123,
"orderBy": FFHHabitatTypeCriterionSpeciesListsOrderByInput,
"where": FFHHabitatTypeCriterionSpeciesListsFilterInput
}
Response
{
"data": {
"FFHHabitatTypeCriterionSpeciesLists": [
{
"Beschreibung": "xyz789",
"Bezeichnung": "xyz789",
"FFHHabitatTypeCriteria": [
FFHHabitatTypeCriterion
],
"FFHHabitatTypeSpecies": [FFHHabitatTypeSpecies],
"Flag_Deleted": true,
"Flag_Sync": true,
"Flag_Visible": true,
"ID_LRTArtenliste": "4",
"ID_Version": 123,
"QueryAdditional_ID_LRT": "xyz789",
"QueryArten": "xyz789",
"QueryLRTArten": "abc123"
}
]
}
}
FFHHabitatTypeSpecies
Response
Returns [FFHHabitatTypeSpecies!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - FFHHabitatTypeSpeciesOrderByInput
|
|
where - FFHHabitatTypeSpeciesFilterInput
|
Example
Query
query FFHHabitatTypeSpecies(
$limit: Int,
$offset: Int,
$orderBy: FFHHabitatTypeSpeciesOrderByInput,
$where: FFHHabitatTypeSpeciesFilterInput
) {
FFHHabitatTypeSpecies(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Anzeigename
FFHHabitatType {
...FFHHabitatTypeFragment
}
Flag_20001
Flag_20002
Flag_20003
Flag_20004
Flag_20005
Flag_20006
Flag_20007
Flag_20008
Flag_20009
Flag_20010
Flag_20011
Flag_20012
Flag_20013
Flag_20014
Flag_20015
Flag_20016
Flag_20017
Flag_Characeen
Flag_Deleted
Flag_Invasive_Wald
Flag_Kennzeichen
Flag_Neophyt
Flag_Sync
Flag_Visible
ID_Art
ID_BioGeoReg
ID_LRT
ID_LRTArt
ID_Lebensform
ID_Listentyp
ID_Meer
ID_Version
JahrBis
JahrVon
Species {
...SpeciesFragment
}
}
}
Variables
{
"limit": 987,
"offset": 123,
"orderBy": FFHHabitatTypeSpeciesOrderByInput,
"where": FFHHabitatTypeSpeciesFilterInput
}
Response
{
"data": {
"FFHHabitatTypeSpecies": [
{
"Anzeigename": "xyz789",
"FFHHabitatType": FFHHabitatType,
"Flag_20001": false,
"Flag_20002": false,
"Flag_20003": false,
"Flag_20004": false,
"Flag_20005": false,
"Flag_20006": true,
"Flag_20007": true,
"Flag_20008": true,
"Flag_20009": false,
"Flag_20010": true,
"Flag_20011": true,
"Flag_20012": false,
"Flag_20013": true,
"Flag_20014": true,
"Flag_20015": false,
"Flag_20016": true,
"Flag_20017": true,
"Flag_Characeen": false,
"Flag_Deleted": false,
"Flag_Invasive_Wald": true,
"Flag_Kennzeichen": true,
"Flag_Neophyt": false,
"Flag_Sync": true,
"Flag_Visible": true,
"ID_Art": 987,
"ID_BioGeoReg": 987,
"ID_LRT": 987,
"ID_LRTArt": 4,
"ID_Lebensform": 987,
"ID_Listentyp": 987,
"ID_Meer": 123,
"ID_Version": 123,
"JahrBis": 987,
"JahrVon": 123,
"Species": Species
}
]
}
}
FFHHabitatTypeSpeciesItem
Response
Returns an FFHHabitatTypeSpecies!
Arguments
Name | Description |
---|---|
id - Int!
|
Species ID |
Example
Query
query FFHHabitatTypeSpeciesItem($id: Int!) {
FFHHabitatTypeSpeciesItem(id: $id) {
Anzeigename
FFHHabitatType {
...FFHHabitatTypeFragment
}
Flag_20001
Flag_20002
Flag_20003
Flag_20004
Flag_20005
Flag_20006
Flag_20007
Flag_20008
Flag_20009
Flag_20010
Flag_20011
Flag_20012
Flag_20013
Flag_20014
Flag_20015
Flag_20016
Flag_20017
Flag_Characeen
Flag_Deleted
Flag_Invasive_Wald
Flag_Kennzeichen
Flag_Neophyt
Flag_Sync
Flag_Visible
ID_Art
ID_BioGeoReg
ID_LRT
ID_LRTArt
ID_Lebensform
ID_Listentyp
ID_Meer
ID_Version
JahrBis
JahrVon
Species {
...SpeciesFragment
}
}
}
Variables
{"id": 123}
Response
{
"data": {
"FFHHabitatTypeSpeciesItem": {
"Anzeigename": "xyz789",
"FFHHabitatType": FFHHabitatType,
"Flag_20001": false,
"Flag_20002": true,
"Flag_20003": false,
"Flag_20004": false,
"Flag_20005": false,
"Flag_20006": true,
"Flag_20007": true,
"Flag_20008": true,
"Flag_20009": true,
"Flag_20010": false,
"Flag_20011": true,
"Flag_20012": false,
"Flag_20013": false,
"Flag_20014": false,
"Flag_20015": false,
"Flag_20016": false,
"Flag_20017": true,
"Flag_Characeen": false,
"Flag_Deleted": false,
"Flag_Invasive_Wald": false,
"Flag_Kennzeichen": true,
"Flag_Neophyt": true,
"Flag_Sync": false,
"Flag_Visible": false,
"ID_Art": 123,
"ID_BioGeoReg": 987,
"ID_LRT": 123,
"ID_LRTArt": 4,
"ID_Lebensform": 123,
"ID_Listentyp": 987,
"ID_Meer": 987,
"ID_Version": 987,
"JahrBis": 123,
"JahrVon": 987,
"Species": Species
}
}
}
FFHHabitatTypes
Response
Returns [FFHHabitatType!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - FFHHabitatTypesOrderByInput
|
|
where - FFHHabitatTypesFilterInput
|
Example
Query
query FFHHabitatTypes(
$limit: Int,
$offset: Int,
$orderBy: FFHHabitatTypesOrderByInput,
$where: FFHHabitatTypesFilterInput
) {
FFHHabitatTypes(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Bezeichnung
CodeFFH
FFHHabitatTypeCriteria {
...FFHHabitatTypeCriterionFragment
}
FFHHabitatTypeSpecies {
...FFHHabitatTypeSpeciesFragment
}
Flag_Deleted
ID_LRT
ID_Version
}
}
Variables
{
"limit": 987,
"offset": 987,
"orderBy": FFHHabitatTypesOrderByInput,
"where": FFHHabitatTypesFilterInput
}
Response
{
"data": {
"FFHHabitatTypes": [
{
"Bezeichnung": "abc123",
"CodeFFH": "xyz789",
"FFHHabitatTypeCriteria": [
FFHHabitatTypeCriterion
],
"FFHHabitatTypeSpecies": [FFHHabitatTypeSpecies],
"Flag_Deleted": false,
"ID_LRT": 987,
"ID_Version": 987.65
}
]
}
}
FFHSpeciesCriteria
Response
Returns [FFHSpeciesCriterion!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - FFHSpeciesCriteriaOrderByInput
|
|
where - FFHSpeciesCriteriaFilterInput
|
Example
Query
query FFHSpeciesCriteria(
$limit: Int,
$offset: Int,
$orderBy: FFHSpeciesCriteriaOrderByInput,
$where: FFHSpeciesCriteriaFilterInput
) {
FFHSpeciesCriteria(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
A
B
C
Einheit
Flag_20001
Flag_20002
Flag_20003
Flag_20004
Flag_20005
Flag_20006
Flag_20007
Flag_20008
Flag_20009
Flag_20010
Flag_20011
Flag_20012
Flag_20013
Flag_20014
Flag_20015
Flag_20016
Flag_20017
Flag_Begruendung
Flag_Deleted
Grenze_A
Grenze_C
ID_Art
ID_DataType
ID_KBS
ID_KBSGruppe
ID_KBS_Prev
ID_Mapping
ID_Sort
ID_Version
ID_Wichtung
IDs_Required
JahrBis
JahrVon
Kriterium
Kriterium_Info
Species {
...SpeciesFragment
}
}
}
Variables
{
"limit": 123,
"offset": 123,
"orderBy": FFHSpeciesCriteriaOrderByInput,
"where": FFHSpeciesCriteriaFilterInput
}
Response
{
"data": {
"FFHSpeciesCriteria": [
{
"A": "xyz789",
"B": "xyz789",
"C": "xyz789",
"Einheit": "xyz789",
"Flag_20001": true,
"Flag_20002": false,
"Flag_20003": true,
"Flag_20004": false,
"Flag_20005": true,
"Flag_20006": true,
"Flag_20007": true,
"Flag_20008": true,
"Flag_20009": true,
"Flag_20010": false,
"Flag_20011": true,
"Flag_20012": true,
"Flag_20013": false,
"Flag_20014": false,
"Flag_20015": true,
"Flag_20016": true,
"Flag_20017": false,
"Flag_Begruendung": true,
"Flag_Deleted": true,
"Grenze_A": 987.65,
"Grenze_C": 123.45,
"ID_Art": 987,
"ID_DataType": 123.45,
"ID_KBS": 987,
"ID_KBSGruppe": 987.65,
"ID_KBS_Prev": 987.65,
"ID_Mapping": 987.65,
"ID_Sort": 123.45,
"ID_Version": 123.45,
"ID_Wichtung": 987.65,
"IDs_Required": "xyz789",
"JahrBis": 123.45,
"JahrVon": 123.45,
"Kriterium": "abc123",
"Kriterium_Info": "abc123",
"Species": Species
}
]
}
}
FFHSpeciesCriterion
Response
Returns an FFHSpeciesCriterion!
Arguments
Name | Description |
---|---|
id - Int!
|
Criterion ID |
Example
Query
query FFHSpeciesCriterion($id: Int!) {
FFHSpeciesCriterion(id: $id) {
A
B
C
Einheit
Flag_20001
Flag_20002
Flag_20003
Flag_20004
Flag_20005
Flag_20006
Flag_20007
Flag_20008
Flag_20009
Flag_20010
Flag_20011
Flag_20012
Flag_20013
Flag_20014
Flag_20015
Flag_20016
Flag_20017
Flag_Begruendung
Flag_Deleted
Grenze_A
Grenze_C
ID_Art
ID_DataType
ID_KBS
ID_KBSGruppe
ID_KBS_Prev
ID_Mapping
ID_Sort
ID_Version
ID_Wichtung
IDs_Required
JahrBis
JahrVon
Kriterium
Kriterium_Info
Species {
...SpeciesFragment
}
}
}
Variables
{"id": 987}
Response
{
"data": {
"FFHSpeciesCriterion": {
"A": "xyz789",
"B": "abc123",
"C": "abc123",
"Einheit": "abc123",
"Flag_20001": true,
"Flag_20002": true,
"Flag_20003": true,
"Flag_20004": true,
"Flag_20005": false,
"Flag_20006": false,
"Flag_20007": true,
"Flag_20008": true,
"Flag_20009": true,
"Flag_20010": true,
"Flag_20011": true,
"Flag_20012": false,
"Flag_20013": true,
"Flag_20014": false,
"Flag_20015": false,
"Flag_20016": false,
"Flag_20017": false,
"Flag_Begruendung": false,
"Flag_Deleted": false,
"Grenze_A": 123.45,
"Grenze_C": 123.45,
"ID_Art": 123,
"ID_DataType": 987.65,
"ID_KBS": 987,
"ID_KBSGruppe": 123.45,
"ID_KBS_Prev": 123.45,
"ID_Mapping": 987.65,
"ID_Sort": 123.45,
"ID_Version": 987.65,
"ID_Wichtung": 123.45,
"IDs_Required": "xyz789",
"JahrBis": 987.65,
"JahrVon": 123.45,
"Kriterium": "xyz789",
"Kriterium_Info": "xyz789",
"Species": Species
}
}
}
GeocodingPlacesGeoJSON
Response
Returns a GeocodingPlacesGeoJSON!
Arguments
Name | Description |
---|---|
detailsFilter - GeocodingPlacesGeoJSONItemsDetailsSearchFilterInput
|
Get details on a place returned from a previous query (by gid). |
filter - GeocodingPlacesGeoJSONItemsSearchFilterInput
|
Find a place by searching for an address or name. |
lang - String
|
Target language code in the BCP47 standard |
reverseFilter - GeocodingPlacesGeoJSONItemsReverseSearchFilterInput
|
Find what is located at a certain coordinate location. |
structuredFilter - GeocodingPlacesGeoJSONItemsSearchStructuredFilterInput
|
Find a place with data already separated into housenumber, street, city, etc. |
Example
Query
query GeocodingPlacesGeoJSON(
$detailsFilter: GeocodingPlacesGeoJSONItemsDetailsSearchFilterInput,
$filter: GeocodingPlacesGeoJSONItemsSearchFilterInput,
$lang: String,
$reverseFilter: GeocodingPlacesGeoJSONItemsReverseSearchFilterInput,
$structuredFilter: GeocodingPlacesGeoJSONItemsSearchStructuredFilterInput
) {
GeocodingPlacesGeoJSON(
detailsFilter: $detailsFilter,
filter: $filter,
lang: $lang,
reverseFilter: $reverseFilter,
structuredFilter: $structuredFilter
) {
bbox
features {
...GeocodingPlaceFeatureFragment
}
type
}
}
Variables
{
"detailsFilter": GeocodingPlacesGeoJSONItemsDetailsSearchFilterInput,
"filter": GeocodingPlacesGeoJSONItemsSearchFilterInput,
"lang": "abc123",
"reverseFilter": GeocodingPlacesGeoJSONItemsReverseSearchFilterInput,
"structuredFilter": GeocodingPlacesGeoJSONItemsSearchStructuredFilterInput
}
Response
{
"data": {
"GeocodingPlacesGeoJSON": {
"bbox": [987.65],
"features": [GeocodingPlaceFeature],
"type": "abc123"
}
}
}
Group
Example
Query
query Group($id: Int!) {
Group(id: $id) {
Category {
...CategoryFragment
}
Flag_Deleted
Flag_Sync
Gruppe
Gruppe_wiss
ID_Gruppe
ID_Kategorie
ID_Version
Species {
...SpeciesFragment
}
Subgroups {
...SubgroupFragment
}
}
}
Variables
{"id": 987}
Response
{
"data": {
"Group": {
"Category": Category,
"Flag_Deleted": true,
"Flag_Sync": true,
"Gruppe": "abc123",
"Gruppe_wiss": "abc123",
"ID_Gruppe": 987,
"ID_Kategorie": 123,
"ID_Version": 987,
"Species": [Species],
"Subgroups": [Subgroup]
}
}
}
Groups
Response
Returns [Group!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - GroupsOrderByInput
|
|
where - GroupsFilterInput
|
Example
Query
query Groups(
$limit: Int,
$offset: Int,
$orderBy: GroupsOrderByInput,
$where: GroupsFilterInput
) {
Groups(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Category {
...CategoryFragment
}
Flag_Deleted
Flag_Sync
Gruppe
Gruppe_wiss
ID_Gruppe
ID_Kategorie
ID_Version
Species {
...SpeciesFragment
}
Subgroups {
...SubgroupFragment
}
}
}
Variables
{
"limit": 987,
"offset": 987,
"orderBy": GroupsOrderByInput,
"where": GroupsFilterInput
}
Response
{
"data": {
"Groups": [
{
"Category": Category,
"Flag_Deleted": false,
"Flag_Sync": false,
"Gruppe": "xyz789",
"Gruppe_wiss": "xyz789",
"ID_Gruppe": 123,
"ID_Kategorie": 123,
"ID_Version": 123,
"Species": [Species],
"Subgroups": [Subgroup]
}
]
}
}
IdentificationMethod
Response
Returns an IdentificationMethod!
Arguments
Name | Description |
---|---|
id - Int!
|
Identification method ID |
Example
Query
query IdentificationMethod($id: Int!) {
IdentificationMethod(id: $id) {
Beschreibung
Categories {
...CategoryFragment
}
Flag_1
Flag_2
Flag_3
Flag_4
Flag_5
Flag_6
Flag_7
Flag_Deleted
Flag_Short
Flag_Sync
Flag_Visible
GUID_Nachweistyp
ID_Nachweistyp
ID_Version
Kuerzel
Modul_1
Modul_2
Modul_3
Modul_4
Modul_5
Modul_6
Modul_7
Modul_8
Modul_9
Modul_10
Modul_11
Modul_12
Modul_13
Modul_14
Modul_15
Nachweistyp
RefID
}
}
Variables
{"id": 987}
Response
{
"data": {
"IdentificationMethod": {
"Beschreibung": "abc123",
"Categories": [Category],
"Flag_1": true,
"Flag_2": true,
"Flag_3": true,
"Flag_4": false,
"Flag_5": false,
"Flag_6": false,
"Flag_7": true,
"Flag_Deleted": true,
"Flag_Short": false,
"Flag_Sync": false,
"Flag_Visible": false,
"GUID_Nachweistyp": "xyz789",
"ID_Nachweistyp": 987,
"ID_Version": 987,
"Kuerzel": "abc123",
"Modul_1": true,
"Modul_2": true,
"Modul_3": false,
"Modul_4": true,
"Modul_5": true,
"Modul_6": false,
"Modul_7": false,
"Modul_8": false,
"Modul_9": true,
"Modul_10": false,
"Modul_11": false,
"Modul_12": true,
"Modul_13": true,
"Modul_14": true,
"Modul_15": true,
"Nachweistyp": "xyz789",
"RefID": 123
}
}
}
IdentificationMethods
Response
Returns [IdentificationMethod!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - IdentificationMethodsOrderByInput
|
|
where - IdentificationMethodsFilterInput
|
Example
Query
query IdentificationMethods(
$limit: Int,
$offset: Int,
$orderBy: IdentificationMethodsOrderByInput,
$where: IdentificationMethodsFilterInput
) {
IdentificationMethods(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Beschreibung
Categories {
...CategoryFragment
}
Flag_1
Flag_2
Flag_3
Flag_4
Flag_5
Flag_6
Flag_7
Flag_Deleted
Flag_Short
Flag_Sync
Flag_Visible
GUID_Nachweistyp
ID_Nachweistyp
ID_Version
Kuerzel
Modul_1
Modul_2
Modul_3
Modul_4
Modul_5
Modul_6
Modul_7
Modul_8
Modul_9
Modul_10
Modul_11
Modul_12
Modul_13
Modul_14
Modul_15
Nachweistyp
RefID
}
}
Variables
{
"limit": 987,
"offset": 123,
"orderBy": IdentificationMethodsOrderByInput,
"where": IdentificationMethodsFilterInput
}
Response
{
"data": {
"IdentificationMethods": [
{
"Beschreibung": "abc123",
"Categories": [Category],
"Flag_1": false,
"Flag_2": false,
"Flag_3": true,
"Flag_4": true,
"Flag_5": true,
"Flag_6": true,
"Flag_7": false,
"Flag_Deleted": false,
"Flag_Short": true,
"Flag_Sync": false,
"Flag_Visible": true,
"GUID_Nachweistyp": "abc123",
"ID_Nachweistyp": 123,
"ID_Version": 123,
"Kuerzel": "xyz789",
"Modul_1": true,
"Modul_2": false,
"Modul_3": true,
"Modul_4": false,
"Modul_5": false,
"Modul_6": false,
"Modul_7": true,
"Modul_8": false,
"Modul_9": false,
"Modul_10": false,
"Modul_11": false,
"Modul_12": false,
"Modul_13": true,
"Modul_14": false,
"Modul_15": false,
"Nachweistyp": "xyz789",
"RefID": 987
}
]
}
}
MonitoringData
Response
Returns [MonitoringData!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - MonitoringDataOrderByInput
|
|
where - MonitoringDataFilterInput
|
Example
Query
query MonitoringData(
$limit: Int,
$offset: Int,
$orderBy: MonitoringDataOrderByInput,
$where: MonitoringDataFilterInput
) {
MonitoringData(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Data_1
Data_2
Data_3
Data_4
Date_Changed
Date_Create
Date_Service
Flag_Deleted
GUID_Daten
GUID_MonitoringDaten
ID_Cloud
ID_Data_1
ID_Data_2
ID_Data_3
ID_Data_4
ID_Data_5
ID_MonitoringDaten
ID_Monitoringtyp
ID_Parameter
ID_Referenz
Wert
Wert_Long
}
}
Variables
{
"limit": 123,
"offset": 987,
"orderBy": MonitoringDataOrderByInput,
"where": MonitoringDataFilterInput
}
Response
{
"data": {
"MonitoringData": [
{
"Data_1": "abc123",
"Data_2": "abc123",
"Data_3": "abc123",
"Data_4": "abc123",
"Date_Changed": "2007-12-03T10:15:30Z",
"Date_Create": "2007-12-03T10:15:30Z",
"Date_Service": "2007-12-03T10:15:30Z",
"Flag_Deleted": true,
"GUID_Daten": "xyz789",
"GUID_MonitoringDaten": "xyz789",
"ID_Cloud": 987,
"ID_Data_1": 123,
"ID_Data_2": 987,
"ID_Data_3": 123,
"ID_Data_4": 123,
"ID_Data_5": 123,
"ID_MonitoringDaten": 987,
"ID_Monitoringtyp": 123,
"ID_Parameter": 123,
"ID_Referenz": 123,
"Wert": "abc123",
"Wert_Long": 987
}
]
}
}
MonitoringParameter
Response
Returns a MonitoringParameter!
Arguments
Name | Description |
---|---|
id - Int
|
Monitoring parameter ID |
Example
Query
query MonitoringParameter($id: Int) {
MonitoringParameter(id: $id) {
Einheit
Flag_Deleted
Flag_Deprecated
ID_Art
ID_Datentyp
ID_MonitoringTyp
ID_Parameter
ID_Sort
ID_Version
MonitoringReferences {
...MonitoringReferenceFragment
}
MonitoringTyp
MonitoringType {
...MonitoringTypeFragment
}
Parameter
Parameter_Info
}
}
Variables
{"id": 123}
Response
{
"data": {
"MonitoringParameter": {
"Einheit": "xyz789",
"Flag_Deleted": true,
"Flag_Deprecated": false,
"ID_Art": 987.65,
"ID_Datentyp": 123.45,
"ID_MonitoringTyp": 987,
"ID_Parameter": 987,
"ID_Sort": 987.65,
"ID_Version": 987.65,
"MonitoringReferences": [MonitoringReference],
"MonitoringTyp": "xyz789",
"MonitoringType": MonitoringType,
"Parameter": "xyz789",
"Parameter_Info": "xyz789"
}
}
}
MonitoringParameters
Response
Returns [MonitoringParameter!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - MonitoringParametersOrderByInput
|
|
where - MonitoringParametersFilterInput
|
Example
Query
query MonitoringParameters(
$limit: Int,
$offset: Int,
$orderBy: MonitoringParametersOrderByInput,
$where: MonitoringParametersFilterInput
) {
MonitoringParameters(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Einheit
Flag_Deleted
Flag_Deprecated
ID_Art
ID_Datentyp
ID_MonitoringTyp
ID_Parameter
ID_Sort
ID_Version
MonitoringReferences {
...MonitoringReferenceFragment
}
MonitoringTyp
MonitoringType {
...MonitoringTypeFragment
}
Parameter
Parameter_Info
}
}
Variables
{
"limit": 987,
"offset": 987,
"orderBy": MonitoringParametersOrderByInput,
"where": MonitoringParametersFilterInput
}
Response
{
"data": {
"MonitoringParameters": [
{
"Einheit": "abc123",
"Flag_Deleted": false,
"Flag_Deprecated": true,
"ID_Art": 987.65,
"ID_Datentyp": 123.45,
"ID_MonitoringTyp": 987,
"ID_Parameter": 987,
"ID_Sort": 123.45,
"ID_Version": 123.45,
"MonitoringReferences": [MonitoringReference],
"MonitoringTyp": "xyz789",
"MonitoringType": MonitoringType,
"Parameter": "xyz789",
"Parameter_Info": "abc123"
}
]
}
}
MonitoringReference
Response
Returns a MonitoringReference!
Arguments
Name | Description |
---|---|
id - Int
|
Monitoring reference ID |
Example
Query
query MonitoringReference($id: Int) {
MonitoringReference(id: $id) {
Beschreibung
Flag_Deleted
Flag_Deprecated
ID_Parameter
ID_Referenz
ID_Sort
ID_Version
MonitoringParameter {
...MonitoringParameterFragment
}
Parameter
Referenz
}
}
Variables
{"id": 123}
Response
{
"data": {
"MonitoringReference": {
"Beschreibung": "abc123",
"Flag_Deleted": false,
"Flag_Deprecated": false,
"ID_Parameter": 987.65,
"ID_Referenz": 123,
"ID_Sort": 123.45,
"ID_Version": 123.45,
"MonitoringParameter": MonitoringParameter,
"Parameter": "xyz789",
"Referenz": "abc123"
}
}
}
MonitoringReferences
Response
Returns [MonitoringReference!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - MonitoringReferencesOrderByInput
|
|
where - MonitoringReferencesFilterInput
|
Example
Query
query MonitoringReferences(
$limit: Int,
$offset: Int,
$orderBy: MonitoringReferencesOrderByInput,
$where: MonitoringReferencesFilterInput
) {
MonitoringReferences(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Beschreibung
Flag_Deleted
Flag_Deprecated
ID_Parameter
ID_Referenz
ID_Sort
ID_Version
MonitoringParameter {
...MonitoringParameterFragment
}
Parameter
Referenz
}
}
Variables
{
"limit": 123,
"offset": 123,
"orderBy": MonitoringReferencesOrderByInput,
"where": MonitoringReferencesFilterInput
}
Response
{
"data": {
"MonitoringReferences": [
{
"Beschreibung": "xyz789",
"Flag_Deleted": true,
"Flag_Deprecated": true,
"ID_Parameter": 123.45,
"ID_Referenz": 123,
"ID_Sort": 123.45,
"ID_Version": 123.45,
"MonitoringParameter": MonitoringParameter,
"Parameter": "xyz789",
"Referenz": "xyz789"
}
]
}
}
MonitoringType
Response
Returns a MonitoringType!
Arguments
Name | Description |
---|---|
id - Int
|
Monitoring type ID |
Example
Query
query MonitoringType($id: Int) {
MonitoringType(id: $id) {
Flag_Deleted
ID_MonitoringTyp
ID_Version
MonitoringParameters {
...MonitoringParameterFragment
}
MonitoringTyp
}
}
Variables
{"id": 987}
Response
{
"data": {
"MonitoringType": {
"Flag_Deleted": true,
"ID_MonitoringTyp": 987,
"ID_Version": 987.65,
"MonitoringParameters": [MonitoringParameter],
"MonitoringTyp": "xyz789"
}
}
}
MonitoringTypes
Response
Returns [MonitoringType!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - MonitoringTypesOrderByInput
|
|
where - MonitoringTypesFilterInput
|
Example
Query
query MonitoringTypes(
$limit: Int,
$offset: Int,
$orderBy: MonitoringTypesOrderByInput,
$where: MonitoringTypesFilterInput
) {
MonitoringTypes(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Flag_Deleted
ID_MonitoringTyp
ID_Version
MonitoringParameters {
...MonitoringParameterFragment
}
MonitoringTyp
}
}
Variables
{
"limit": 123,
"offset": 123,
"orderBy": MonitoringTypesOrderByInput,
"where": MonitoringTypesFilterInput
}
Response
{
"data": {
"MonitoringTypes": [
{
"Flag_Deleted": false,
"ID_MonitoringTyp": 987,
"ID_Version": 123.45,
"MonitoringParameters": [MonitoringParameter],
"MonitoringTyp": "abc123"
}
]
}
}
ReproductionType
Response
Returns a ReproductionType!
Arguments
Name | Description |
---|---|
id - Int!
|
Reproduction type ID |
Example
Query
query ReproductionType($id: Int!) {
ReproductionType(id: $id) {
Beschreibung
Categories {
...CategoryFragment
}
Flag_1
Flag_2
Flag_3
Flag_4
Flag_5
Flag_6
Flag_7
Flag_Deleted
Flag_Short
Flag_Sync
Flag_Visible
GUID_Reproduktion
ID_Reproduktion
ID_Version
ID_Wertigkeit
Kuerzel
Modul_1
Modul_2
Modul_3
Modul_4
Modul_5
Modul_6
Modul_7
Modul_8
Modul_9
Modul_10
Modul_11
Modul_12
Modul_13
Modul_14
Modul_15
RefID
Reproduktion
}
}
Variables
{"id": 123}
Response
{
"data": {
"ReproductionType": {
"Beschreibung": "abc123",
"Categories": [Category],
"Flag_1": false,
"Flag_2": false,
"Flag_3": true,
"Flag_4": false,
"Flag_5": false,
"Flag_6": true,
"Flag_7": true,
"Flag_Deleted": true,
"Flag_Short": true,
"Flag_Sync": true,
"Flag_Visible": true,
"GUID_Reproduktion": "xyz789",
"ID_Reproduktion": 987,
"ID_Version": 123,
"ID_Wertigkeit": 123,
"Kuerzel": "xyz789",
"Modul_1": true,
"Modul_2": true,
"Modul_3": true,
"Modul_4": false,
"Modul_5": false,
"Modul_6": true,
"Modul_7": true,
"Modul_8": false,
"Modul_9": true,
"Modul_10": false,
"Modul_11": false,
"Modul_12": true,
"Modul_13": false,
"Modul_14": true,
"Modul_15": true,
"RefID": 123,
"Reproduktion": "xyz789"
}
}
}
ReproductionTypes
Response
Returns [ReproductionType!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - ReproductionTypesOrderByInput
|
|
where - ReproductionTypesFilterInput
|
Example
Query
query ReproductionTypes(
$limit: Int,
$offset: Int,
$orderBy: ReproductionTypesOrderByInput,
$where: ReproductionTypesFilterInput
) {
ReproductionTypes(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Beschreibung
Categories {
...CategoryFragment
}
Flag_1
Flag_2
Flag_3
Flag_4
Flag_5
Flag_6
Flag_7
Flag_Deleted
Flag_Short
Flag_Sync
Flag_Visible
GUID_Reproduktion
ID_Reproduktion
ID_Version
ID_Wertigkeit
Kuerzel
Modul_1
Modul_2
Modul_3
Modul_4
Modul_5
Modul_6
Modul_7
Modul_8
Modul_9
Modul_10
Modul_11
Modul_12
Modul_13
Modul_14
Modul_15
RefID
Reproduktion
}
}
Variables
{
"limit": 987,
"offset": 987,
"orderBy": ReproductionTypesOrderByInput,
"where": ReproductionTypesFilterInput
}
Response
{
"data": {
"ReproductionTypes": [
{
"Beschreibung": "xyz789",
"Categories": [Category],
"Flag_1": false,
"Flag_2": true,
"Flag_3": false,
"Flag_4": true,
"Flag_5": false,
"Flag_6": false,
"Flag_7": false,
"Flag_Deleted": false,
"Flag_Short": false,
"Flag_Sync": false,
"Flag_Visible": false,
"GUID_Reproduktion": "xyz789",
"ID_Reproduktion": 123,
"ID_Version": 123,
"ID_Wertigkeit": 987,
"Kuerzel": "xyz789",
"Modul_1": true,
"Modul_2": true,
"Modul_3": true,
"Modul_4": false,
"Modul_5": true,
"Modul_6": true,
"Modul_7": true,
"Modul_8": true,
"Modul_9": true,
"Modul_10": true,
"Modul_11": false,
"Modul_12": true,
"Modul_13": false,
"Modul_14": true,
"Modul_15": true,
"RefID": 987,
"Reproduktion": "xyz789"
}
]
}
}
Species
Response
Returns [Species!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - SpeciesOrderByInput
|
|
where - SpeciesFilterInput
|
Example
Query
query Species(
$limit: Int,
$offset: Int,
$orderBy: SpeciesOrderByInput,
$where: SpeciesFilterInput
) {
Species(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Art_BirdBase
Art_Deutsch
Art_English
Art_French
Art_German
Art_Kuerzel
Art_Kuerzel_BirdBase
Art_Spanish
Art_Subgenus
Art_Wissenschaftlich
Autor
BL20001
BL20002
BL20003
BL20004
BL20005
BL20006
BL20007
BL20008
BL20009
BL20010
BL20011
BL20012
BL20013
BL20014
BL20015
BL20016
BL20017
BNatSchG
BfN_Code
Category {
...CategoryFragment
}
Code_EU
EUNomen
Euring
FFH
FFHHabitatTypeSpecies {
...FFHHabitatTypeSpeciesFragment
}
FFHSpeciesCriteria {
...FFHSpeciesCriterionFragment
}
Flag_Deleted
Flag_Sync
Group {
...GroupFragment
}
ID_Art
ID_ArtenTyp
ID_Gruppe
ID_Kategorie
ID_Parent
ID_Secundum
ID_TaxaStatus
ID_Untergruppe
ID_Version
ParentSpecies {
...SpeciesFragment
}
RL20001
RL20002
RL20003
RL20004
RL20005
RL20006
RL20007
RL20008
RL20009
RL20010
RL20011
RL20012
RL20013
RL20014
RL20015
RL20016
RL20017
RefID
Species {
...SpeciesFragment
}
SpeciesDetails {
...SpeciesDetailFragment
}
SpeciesFederalStatesMemo {
...SpeciesFederalStatesMemoFragment
}
SpeciesImages {
...SpeciesImageFragment
}
SpeciesMemo {
...SpeciesMemoFragment
}
SpeciesPhenograms {
...SpeciesPhenogramFragment
}
Subgroup {
...SubgroupFragment
}
SysCode
SystemCode
TaxonomicRank {
...TaxonomicRankFragment
}
wwSysCode
}
}
Variables
{
"limit": 123,
"offset": 987,
"orderBy": SpeciesOrderByInput,
"where": SpeciesFilterInput
}
Response
{
"data": {
"Species": [
{
"Art_BirdBase": "xyz789",
"Art_Deutsch": "abc123",
"Art_English": "abc123",
"Art_French": "xyz789",
"Art_German": "abc123",
"Art_Kuerzel": "xyz789",
"Art_Kuerzel_BirdBase": "xyz789",
"Art_Spanish": "abc123",
"Art_Subgenus": "xyz789",
"Art_Wissenschaftlich": "xyz789",
"Autor": "xyz789",
"BL20001": false,
"BL20002": true,
"BL20003": false,
"BL20004": false,
"BL20005": false,
"BL20006": false,
"BL20007": true,
"BL20008": true,
"BL20009": true,
"BL20010": false,
"BL20011": false,
"BL20012": true,
"BL20013": false,
"BL20014": false,
"BL20015": false,
"BL20016": true,
"BL20017": false,
"BNatSchG": "xyz789",
"BfN_Code": "xyz789",
"Category": Category,
"Code_EU": "xyz789",
"EUNomen": "abc123",
"Euring": "xyz789",
"FFH": "abc123",
"FFHHabitatTypeSpecies": FFHHabitatTypeSpecies,
"FFHSpeciesCriteria": [FFHSpeciesCriterion],
"Flag_Deleted": false,
"Flag_Sync": true,
"Group": Group,
"ID_Art": 987,
"ID_ArtenTyp": 123,
"ID_Gruppe": 987,
"ID_Kategorie": 123,
"ID_Parent": 987,
"ID_Secundum": 123,
"ID_TaxaStatus": 987,
"ID_Untergruppe": 123,
"ID_Version": 123,
"ParentSpecies": Species,
"RL20001": "xyz789",
"RL20002": "abc123",
"RL20003": "abc123",
"RL20004": "xyz789",
"RL20005": "abc123",
"RL20006": "xyz789",
"RL20007": "abc123",
"RL20008": "abc123",
"RL20009": "xyz789",
"RL20010": "abc123",
"RL20011": "xyz789",
"RL20012": "xyz789",
"RL20013": "abc123",
"RL20014": "xyz789",
"RL20015": "xyz789",
"RL20016": "abc123",
"RL20017": "abc123",
"RefID": 987,
"Species": [Species],
"SpeciesDetails": [SpeciesDetail],
"SpeciesFederalStatesMemo": SpeciesFederalStatesMemo,
"SpeciesImages": [SpeciesImage],
"SpeciesMemo": SpeciesMemo,
"SpeciesPhenograms": [SpeciesPhenogram],
"Subgroup": Subgroup,
"SysCode": "xyz789",
"SystemCode": "xyz789",
"TaxonomicRank": TaxonomicRank,
"wwSysCode": "abc123"
}
]
}
}
SpeciesDetail
Response
Returns a SpeciesDetail
Arguments
Name | Description |
---|---|
id - Int!
|
Species Detail ID |
Example
Query
query SpeciesDetail($id: Int!) {
SpeciesDetail(id: $id) {
Flag_Deleted
Flag_Sync
Flag_Visible
ID_Art
ID_ArtenDetails
ID_Bundesland
ID_Referenz
ID_Version
Species {
...SpeciesFragment
}
SpeciesDetailReference {
...SpeciesDetailReferenceFragment
}
SpeciesDetailType {
...SpeciesDetailTypeFragment
}
Wert_Bit
Wert_Long
Wert_Memo
Wert_String
}
}
Variables
{"id": 987}
Response
{
"data": {
"SpeciesDetail": {
"Flag_Deleted": true,
"Flag_Sync": false,
"Flag_Visible": true,
"ID_Art": 987,
"ID_ArtenDetails": 123,
"ID_Bundesland": 987,
"ID_Referenz": 987,
"ID_Version": 123,
"Species": Species,
"SpeciesDetailReference": SpeciesDetailReference,
"SpeciesDetailType": SpeciesDetailType,
"Wert_Bit": false,
"Wert_Long": 123,
"Wert_Memo": "abc123",
"Wert_String": "xyz789"
}
}
}
SpeciesDetailGroup
Response
Returns a SpeciesDetailGroup
Arguments
Name | Description |
---|---|
id - Int!
|
Detail group ID |
Example
Query
query SpeciesDetailGroup($id: Int!) {
SpeciesDetailGroup(id: $id) {
ArtenDetailGruppe
Flag_Deleted
Flag_Sync
ID_ArtenDetailGruppe
ID_Sort
ID_Version
SpeciesDetailTypes {
...SpeciesDetailTypeFragment
}
}
}
Variables
{"id": 123}
Response
{
"data": {
"SpeciesDetailGroup": {
"ArtenDetailGruppe": "abc123",
"Flag_Deleted": true,
"Flag_Sync": true,
"ID_ArtenDetailGruppe": 987,
"ID_Sort": 123,
"ID_Version": 123,
"SpeciesDetailTypes": [SpeciesDetailType]
}
}
}
SpeciesDetailGroups
Response
Returns [SpeciesDetailGroup!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - SpeciesDetailGroupsOrderByInput
|
|
where - SpeciesDetailGroupsFilterInput
|
Example
Query
query SpeciesDetailGroups(
$limit: Int,
$offset: Int,
$orderBy: SpeciesDetailGroupsOrderByInput,
$where: SpeciesDetailGroupsFilterInput
) {
SpeciesDetailGroups(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
ArtenDetailGruppe
Flag_Deleted
Flag_Sync
ID_ArtenDetailGruppe
ID_Sort
ID_Version
SpeciesDetailTypes {
...SpeciesDetailTypeFragment
}
}
}
Variables
{
"limit": 987,
"offset": 123,
"orderBy": SpeciesDetailGroupsOrderByInput,
"where": SpeciesDetailGroupsFilterInput
}
Response
{
"data": {
"SpeciesDetailGroups": [
{
"ArtenDetailGruppe": "xyz789",
"Flag_Deleted": true,
"Flag_Sync": true,
"ID_ArtenDetailGruppe": 987,
"ID_Sort": 987,
"ID_Version": 123,
"SpeciesDetailTypes": [SpeciesDetailType]
}
]
}
}
SpeciesDetailReference
Response
Returns a SpeciesDetailReference
Arguments
Name | Description |
---|---|
id - Int!
|
Species detail reference ID |
Example
Query
query SpeciesDetailReference($id: Int!) {
SpeciesDetailReference(id: $id) {
Bemerkung
Bundesland
Flag_Deleted
Flag_Sync
ID_ArtenDetailReferenz
ID_Referenz
ID_Sort
ID_Version
Kuerzel
Referenz
SpeciesDetails {
...SpeciesDetailFragment
}
}
}
Variables
{"id": 123}
Response
{
"data": {
"SpeciesDetailReference": {
"Bemerkung": "xyz789",
"Bundesland": 987,
"Flag_Deleted": false,
"Flag_Sync": false,
"ID_ArtenDetailReferenz": 987,
"ID_Referenz": 987,
"ID_Sort": 123,
"ID_Version": 987,
"Kuerzel": "xyz789",
"Referenz": "xyz789",
"SpeciesDetails": [SpeciesDetail]
}
}
}
SpeciesDetailReferences
Response
Returns [SpeciesDetailReference!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - SpeciesDetailReferencesOrderByInput
|
|
where - SpeciesDetailReferencesFilterInput
|
Example
Query
query SpeciesDetailReferences(
$limit: Int,
$offset: Int,
$orderBy: SpeciesDetailReferencesOrderByInput,
$where: SpeciesDetailReferencesFilterInput
) {
SpeciesDetailReferences(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Bemerkung
Bundesland
Flag_Deleted
Flag_Sync
ID_ArtenDetailReferenz
ID_Referenz
ID_Sort
ID_Version
Kuerzel
Referenz
SpeciesDetails {
...SpeciesDetailFragment
}
}
}
Variables
{
"limit": 987,
"offset": 123,
"orderBy": SpeciesDetailReferencesOrderByInput,
"where": SpeciesDetailReferencesFilterInput
}
Response
{
"data": {
"SpeciesDetailReferences": [
{
"Bemerkung": "xyz789",
"Bundesland": 987,
"Flag_Deleted": false,
"Flag_Sync": true,
"ID_ArtenDetailReferenz": 123,
"ID_Referenz": 123,
"ID_Sort": 987,
"ID_Version": 123,
"Kuerzel": "abc123",
"Referenz": "xyz789",
"SpeciesDetails": [SpeciesDetail]
}
]
}
}
SpeciesDetailType
Response
Returns a SpeciesDetailType
Arguments
Name | Description |
---|---|
id - Int!
|
Reference ID |
Example
Query
query SpeciesDetailType($id: Int!) {
SpeciesDetailType(id: $id) {
ArtenDetailTyp
Bundesland
Flag_1
Flag_2
Flag_3
Flag_4
Flag_5
Flag_6
Flag_7
Flag_AllowEdit
Flag_Deleted
Flag_MultiValue
Flag_Sync
Flag_Visible
ID_ArtenDetailGruppe
ID_Referenz
ID_Sort
ID_ValueTyp
ID_Version
InfoText
SpeciesDetailGroup {
...SpeciesDetailGroupFragment
}
SpeciesDetails {
...SpeciesDetailFragment
}
}
}
Variables
{"id": 123}
Response
{
"data": {
"SpeciesDetailType": {
"ArtenDetailTyp": "abc123",
"Bundesland": 123,
"Flag_1": true,
"Flag_2": true,
"Flag_3": true,
"Flag_4": false,
"Flag_5": true,
"Flag_6": true,
"Flag_7": false,
"Flag_AllowEdit": false,
"Flag_Deleted": true,
"Flag_MultiValue": true,
"Flag_Sync": false,
"Flag_Visible": true,
"ID_ArtenDetailGruppe": 123,
"ID_Referenz": 123,
"ID_Sort": 987,
"ID_ValueTyp": 123,
"ID_Version": 987,
"InfoText": "xyz789",
"SpeciesDetailGroup": SpeciesDetailGroup,
"SpeciesDetails": [SpeciesDetail]
}
}
}
SpeciesDetailTypes
Response
Returns [SpeciesDetailType!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - SpeciesDetailTypesOrderByInput
|
|
where - SpeciesDetailTypesFilterInput
|
Example
Query
query SpeciesDetailTypes(
$limit: Int,
$offset: Int,
$orderBy: SpeciesDetailTypesOrderByInput,
$where: SpeciesDetailTypesFilterInput
) {
SpeciesDetailTypes(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
ArtenDetailTyp
Bundesland
Flag_1
Flag_2
Flag_3
Flag_4
Flag_5
Flag_6
Flag_7
Flag_AllowEdit
Flag_Deleted
Flag_MultiValue
Flag_Sync
Flag_Visible
ID_ArtenDetailGruppe
ID_Referenz
ID_Sort
ID_ValueTyp
ID_Version
InfoText
SpeciesDetailGroup {
...SpeciesDetailGroupFragment
}
SpeciesDetails {
...SpeciesDetailFragment
}
}
}
Variables
{
"limit": 123,
"offset": 987,
"orderBy": SpeciesDetailTypesOrderByInput,
"where": SpeciesDetailTypesFilterInput
}
Response
{
"data": {
"SpeciesDetailTypes": [
{
"ArtenDetailTyp": "abc123",
"Bundesland": 987,
"Flag_1": false,
"Flag_2": true,
"Flag_3": true,
"Flag_4": true,
"Flag_5": true,
"Flag_6": true,
"Flag_7": true,
"Flag_AllowEdit": true,
"Flag_Deleted": false,
"Flag_MultiValue": false,
"Flag_Sync": true,
"Flag_Visible": true,
"ID_ArtenDetailGruppe": 987,
"ID_Referenz": 987,
"ID_Sort": 123,
"ID_ValueTyp": 987,
"ID_Version": 987,
"InfoText": "abc123",
"SpeciesDetailGroup": SpeciesDetailGroup,
"SpeciesDetails": [SpeciesDetail]
}
]
}
}
SpeciesDetails
Response
Returns [SpeciesDetail!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - SpeciesDetailsOrderByInput
|
|
where - SpeciesDetailsFilterInput
|
Example
Query
query SpeciesDetails(
$limit: Int,
$offset: Int,
$orderBy: SpeciesDetailsOrderByInput,
$where: SpeciesDetailsFilterInput
) {
SpeciesDetails(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Flag_Deleted
Flag_Sync
Flag_Visible
ID_Art
ID_ArtenDetails
ID_Bundesland
ID_Referenz
ID_Version
Species {
...SpeciesFragment
}
SpeciesDetailReference {
...SpeciesDetailReferenceFragment
}
SpeciesDetailType {
...SpeciesDetailTypeFragment
}
Wert_Bit
Wert_Long
Wert_Memo
Wert_String
}
}
Variables
{
"limit": 987,
"offset": 123,
"orderBy": SpeciesDetailsOrderByInput,
"where": SpeciesDetailsFilterInput
}
Response
{
"data": {
"SpeciesDetails": [
{
"Flag_Deleted": false,
"Flag_Sync": true,
"Flag_Visible": false,
"ID_Art": 987,
"ID_ArtenDetails": 123,
"ID_Bundesland": 123,
"ID_Referenz": 987,
"ID_Version": 987,
"Species": Species,
"SpeciesDetailReference": SpeciesDetailReference,
"SpeciesDetailType": SpeciesDetailType,
"Wert_Bit": false,
"Wert_Long": 123,
"Wert_Memo": "xyz789",
"Wert_String": "xyz789"
}
]
}
}
SpeciesFederalStatesMemo
Response
Returns a SpeciesFederalStatesMemo
Arguments
Name | Description |
---|---|
id - Int!
|
Federal state memo ID |
Example
Query
query SpeciesFederalStatesMemo($id: Int!) {
SpeciesFederalStatesMemo(id: $id) {
Bemerkung
BemerkungTaxonomie
BiologieOekologie
Erscheinung
Flag_Deleted
Flag_Sync
ID_Art
ID_ArtenMemoBundesland
ID_Bundesland
ID_Modus_BemerkungTaxonomie
ID_Modus_BiologieOekologie
ID_Modus_Erscheinung
ID_Modus_Phaenologie
ID_Modus_VerbreitungHerkunft
ID_Version
Phaenologie
VerbreitungHerkunft
}
}
Variables
{"id": 987}
Response
{
"data": {
"SpeciesFederalStatesMemo": {
"Bemerkung": "abc123",
"BemerkungTaxonomie": "abc123",
"BiologieOekologie": "abc123",
"Erscheinung": "abc123",
"Flag_Deleted": false,
"Flag_Sync": true,
"ID_Art": 987,
"ID_ArtenMemoBundesland": 987,
"ID_Bundesland": 123,
"ID_Modus_BemerkungTaxonomie": 123,
"ID_Modus_BiologieOekologie": 123,
"ID_Modus_Erscheinung": 987,
"ID_Modus_Phaenologie": 123,
"ID_Modus_VerbreitungHerkunft": 123,
"ID_Version": 987,
"Phaenologie": "xyz789",
"VerbreitungHerkunft": "xyz789"
}
}
}
SpeciesFederalStatesMemos
Response
Returns [SpeciesFederalStatesMemo!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - SpeciesFederalStatesMemosOrderByInput
|
|
where - SpeciesFederalStatesMemosFilterInput
|
Example
Query
query SpeciesFederalStatesMemos(
$limit: Int,
$offset: Int,
$orderBy: SpeciesFederalStatesMemosOrderByInput,
$where: SpeciesFederalStatesMemosFilterInput
) {
SpeciesFederalStatesMemos(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Bemerkung
BemerkungTaxonomie
BiologieOekologie
Erscheinung
Flag_Deleted
Flag_Sync
ID_Art
ID_ArtenMemoBundesland
ID_Bundesland
ID_Modus_BemerkungTaxonomie
ID_Modus_BiologieOekologie
ID_Modus_Erscheinung
ID_Modus_Phaenologie
ID_Modus_VerbreitungHerkunft
ID_Version
Phaenologie
VerbreitungHerkunft
}
}
Variables
{
"limit": 987,
"offset": 123,
"orderBy": SpeciesFederalStatesMemosOrderByInput,
"where": SpeciesFederalStatesMemosFilterInput
}
Response
{
"data": {
"SpeciesFederalStatesMemos": [
{
"Bemerkung": "xyz789",
"BemerkungTaxonomie": "xyz789",
"BiologieOekologie": "abc123",
"Erscheinung": "abc123",
"Flag_Deleted": true,
"Flag_Sync": true,
"ID_Art": 987,
"ID_ArtenMemoBundesland": 987,
"ID_Bundesland": 123,
"ID_Modus_BemerkungTaxonomie": 123,
"ID_Modus_BiologieOekologie": 123,
"ID_Modus_Erscheinung": 123,
"ID_Modus_Phaenologie": 987,
"ID_Modus_VerbreitungHerkunft": 987,
"ID_Version": 123,
"Phaenologie": "abc123",
"VerbreitungHerkunft": "xyz789"
}
]
}
}
SpeciesImage
Response
Returns a SpeciesImage
Arguments
Name | Description |
---|---|
id - Int!
|
Species Image ID |
Example
Query
query SpeciesImage($id: Int!) {
SpeciesImage(id: $id) {
Bemerkungen
Copyright
FileName
Flag_Deleted
Flag_Sync
ID_Art
ID_ArtenImage
ID_Bundesland
ID_ImageType
ID_Version
Species {
...SpeciesFragment
}
}
}
Variables
{"id": 123}
Response
{
"data": {
"SpeciesImage": {
"Bemerkungen": "abc123",
"Copyright": "abc123",
"FileName": "abc123",
"Flag_Deleted": true,
"Flag_Sync": false,
"ID_Art": 987,
"ID_ArtenImage": 987,
"ID_Bundesland": 123,
"ID_ImageType": 123,
"ID_Version": 987,
"Species": Species
}
}
}
SpeciesImages
Response
Returns [SpeciesImage!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - SpeciesImagesOrderByInput
|
|
where - SpeciesImagesFilterInput
|
Example
Query
query SpeciesImages(
$limit: Int,
$offset: Int,
$orderBy: SpeciesImagesOrderByInput,
$where: SpeciesImagesFilterInput
) {
SpeciesImages(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Bemerkungen
Copyright
FileName
Flag_Deleted
Flag_Sync
ID_Art
ID_ArtenImage
ID_Bundesland
ID_ImageType
ID_Version
Species {
...SpeciesFragment
}
}
}
Variables
{
"limit": 123,
"offset": 987,
"orderBy": SpeciesImagesOrderByInput,
"where": SpeciesImagesFilterInput
}
Response
{
"data": {
"SpeciesImages": [
{
"Bemerkungen": "xyz789",
"Copyright": "xyz789",
"FileName": "abc123",
"Flag_Deleted": true,
"Flag_Sync": false,
"ID_Art": 123,
"ID_ArtenImage": 987,
"ID_Bundesland": 123,
"ID_ImageType": 123,
"ID_Version": 987,
"Species": Species
}
]
}
}
SpeciesItem
Example
Query
query SpeciesItem($id: Int!) {
SpeciesItem(id: $id) {
Art_BirdBase
Art_Deutsch
Art_English
Art_French
Art_German
Art_Kuerzel
Art_Kuerzel_BirdBase
Art_Spanish
Art_Subgenus
Art_Wissenschaftlich
Autor
BL20001
BL20002
BL20003
BL20004
BL20005
BL20006
BL20007
BL20008
BL20009
BL20010
BL20011
BL20012
BL20013
BL20014
BL20015
BL20016
BL20017
BNatSchG
BfN_Code
Category {
...CategoryFragment
}
Code_EU
EUNomen
Euring
FFH
FFHHabitatTypeSpecies {
...FFHHabitatTypeSpeciesFragment
}
FFHSpeciesCriteria {
...FFHSpeciesCriterionFragment
}
Flag_Deleted
Flag_Sync
Group {
...GroupFragment
}
ID_Art
ID_ArtenTyp
ID_Gruppe
ID_Kategorie
ID_Parent
ID_Secundum
ID_TaxaStatus
ID_Untergruppe
ID_Version
ParentSpecies {
...SpeciesFragment
}
RL20001
RL20002
RL20003
RL20004
RL20005
RL20006
RL20007
RL20008
RL20009
RL20010
RL20011
RL20012
RL20013
RL20014
RL20015
RL20016
RL20017
RefID
Species {
...SpeciesFragment
}
SpeciesDetails {
...SpeciesDetailFragment
}
SpeciesFederalStatesMemo {
...SpeciesFederalStatesMemoFragment
}
SpeciesImages {
...SpeciesImageFragment
}
SpeciesMemo {
...SpeciesMemoFragment
}
SpeciesPhenograms {
...SpeciesPhenogramFragment
}
Subgroup {
...SubgroupFragment
}
SysCode
SystemCode
TaxonomicRank {
...TaxonomicRankFragment
}
wwSysCode
}
}
Variables
{"id": 123}
Response
{
"data": {
"SpeciesItem": {
"Art_BirdBase": "abc123",
"Art_Deutsch": "abc123",
"Art_English": "abc123",
"Art_French": "xyz789",
"Art_German": "abc123",
"Art_Kuerzel": "abc123",
"Art_Kuerzel_BirdBase": "abc123",
"Art_Spanish": "xyz789",
"Art_Subgenus": "abc123",
"Art_Wissenschaftlich": "xyz789",
"Autor": "xyz789",
"BL20001": false,
"BL20002": false,
"BL20003": true,
"BL20004": true,
"BL20005": false,
"BL20006": false,
"BL20007": true,
"BL20008": false,
"BL20009": true,
"BL20010": false,
"BL20011": true,
"BL20012": false,
"BL20013": true,
"BL20014": true,
"BL20015": false,
"BL20016": false,
"BL20017": false,
"BNatSchG": "xyz789",
"BfN_Code": "xyz789",
"Category": Category,
"Code_EU": "xyz789",
"EUNomen": "abc123",
"Euring": "abc123",
"FFH": "abc123",
"FFHHabitatTypeSpecies": FFHHabitatTypeSpecies,
"FFHSpeciesCriteria": [FFHSpeciesCriterion],
"Flag_Deleted": true,
"Flag_Sync": false,
"Group": Group,
"ID_Art": 123,
"ID_ArtenTyp": 123,
"ID_Gruppe": 987,
"ID_Kategorie": 987,
"ID_Parent": 987,
"ID_Secundum": 123,
"ID_TaxaStatus": 987,
"ID_Untergruppe": 987,
"ID_Version": 123,
"ParentSpecies": Species,
"RL20001": "abc123",
"RL20002": "xyz789",
"RL20003": "abc123",
"RL20004": "xyz789",
"RL20005": "xyz789",
"RL20006": "abc123",
"RL20007": "xyz789",
"RL20008": "xyz789",
"RL20009": "xyz789",
"RL20010": "xyz789",
"RL20011": "abc123",
"RL20012": "xyz789",
"RL20013": "abc123",
"RL20014": "xyz789",
"RL20015": "abc123",
"RL20016": "xyz789",
"RL20017": "abc123",
"RefID": 987,
"Species": [Species],
"SpeciesDetails": [SpeciesDetail],
"SpeciesFederalStatesMemo": SpeciesFederalStatesMemo,
"SpeciesImages": [SpeciesImage],
"SpeciesMemo": SpeciesMemo,
"SpeciesPhenograms": [SpeciesPhenogram],
"Subgroup": Subgroup,
"SysCode": "xyz789",
"SystemCode": "xyz789",
"TaxonomicRank": TaxonomicRank,
"wwSysCode": "abc123"
}
}
}
SpeciesMemo
Response
Returns a SpeciesMemo
Arguments
Name | Description |
---|---|
id - Int!
|
Species ID |
Example
Query
query SpeciesMemo($id: Int!) {
SpeciesMemo(id: $id) {
Bemerkung
BemerkungTaxonomie
BiologieOekologie
Erscheinung
Flag_Deleted
Flag_Sync
ID_Art
ID_Version
Phaenologie
Synonyme
VerbreitungHerkunft
}
}
Variables
{"id": 123}
Response
{
"data": {
"SpeciesMemo": {
"Bemerkung": "xyz789",
"BemerkungTaxonomie": "abc123",
"BiologieOekologie": "abc123",
"Erscheinung": "xyz789",
"Flag_Deleted": true,
"Flag_Sync": true,
"ID_Art": 123,
"ID_Version": 987,
"Phaenologie": "abc123",
"Synonyme": "xyz789",
"VerbreitungHerkunft": "xyz789"
}
}
}
SpeciesMemos
Response
Returns [SpeciesMemo!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - SpeciesMemosOrderByInput
|
|
where - SpeciesMemosFilterInput
|
Example
Query
query SpeciesMemos(
$limit: Int,
$offset: Int,
$orderBy: SpeciesMemosOrderByInput,
$where: SpeciesMemosFilterInput
) {
SpeciesMemos(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Bemerkung
BemerkungTaxonomie
BiologieOekologie
Erscheinung
Flag_Deleted
Flag_Sync
ID_Art
ID_Version
Phaenologie
Synonyme
VerbreitungHerkunft
}
}
Variables
{
"limit": 987,
"offset": 123,
"orderBy": SpeciesMemosOrderByInput,
"where": SpeciesMemosFilterInput
}
Response
{
"data": {
"SpeciesMemos": [
{
"Bemerkung": "xyz789",
"BemerkungTaxonomie": "xyz789",
"BiologieOekologie": "xyz789",
"Erscheinung": "abc123",
"Flag_Deleted": true,
"Flag_Sync": true,
"ID_Art": 987,
"ID_Version": 123,
"Phaenologie": "xyz789",
"Synonyme": "xyz789",
"VerbreitungHerkunft": "abc123"
}
]
}
}
SpeciesPhenogram
Response
Returns a SpeciesPhenogram
Arguments
Name | Description |
---|---|
id - Int!
|
Phenogram ID |
Example
Query
query SpeciesPhenogram($id: Int!) {
SpeciesPhenogram(id: $id) {
Bemerkung
Flag_Deleted
Flag_Hauptzeit
Flag_Sync
Flag_Unsicher
ID_Art
ID_Phaenogramm
ID_Phaenogrammtyp
ID_Version
Species {
...SpeciesFragment
}
SpeciesPhenogramType {
...SpeciesPhenogramTypeFragment
}
Zeitraum_Beginn
Zeitraum_Ende
}
}
Variables
{"id": 123}
Response
{
"data": {
"SpeciesPhenogram": {
"Bemerkung": "xyz789",
"Flag_Deleted": false,
"Flag_Hauptzeit": true,
"Flag_Sync": false,
"Flag_Unsicher": true,
"ID_Art": 123,
"ID_Phaenogramm": 123,
"ID_Phaenogrammtyp": 987,
"ID_Version": 123,
"Species": Species,
"SpeciesPhenogramType": SpeciesPhenogramType,
"Zeitraum_Beginn": 987,
"Zeitraum_Ende": 987
}
}
}
SpeciesPhenogramType
Response
Returns a SpeciesPhenogramType
Arguments
Name | Description |
---|---|
id - Int!
|
Phenogram type ID |
Example
Query
query SpeciesPhenogramType($id: Int!) {
SpeciesPhenogramType(id: $id) {
Flag_1
Flag_2
Flag_3
Flag_4
Flag_5
Flag_6
Flag_7
Flag_Deleted
Flag_Sync
ID_Phaenogrammtyp
ID_Sort
ID_Version
InfoText
Phaenogrammtyp
SpeciesPhenograms {
...SpeciesPhenogramFragment
}
}
}
Variables
{"id": 123}
Response
{
"data": {
"SpeciesPhenogramType": {
"Flag_1": true,
"Flag_2": false,
"Flag_3": true,
"Flag_4": false,
"Flag_5": false,
"Flag_6": false,
"Flag_7": false,
"Flag_Deleted": false,
"Flag_Sync": true,
"ID_Phaenogrammtyp": 123,
"ID_Sort": 123,
"ID_Version": 987,
"InfoText": "xyz789",
"Phaenogrammtyp": "xyz789",
"SpeciesPhenograms": [SpeciesPhenogram]
}
}
}
SpeciesPhenogramTypes
Response
Returns [SpeciesPhenogramType!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - SpeciesPhenogramTypesOrderByInput
|
|
where - SpeciesPhenogramTypesFilterInput
|
Example
Query
query SpeciesPhenogramTypes(
$limit: Int,
$offset: Int,
$orderBy: SpeciesPhenogramTypesOrderByInput,
$where: SpeciesPhenogramTypesFilterInput
) {
SpeciesPhenogramTypes(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Flag_1
Flag_2
Flag_3
Flag_4
Flag_5
Flag_6
Flag_7
Flag_Deleted
Flag_Sync
ID_Phaenogrammtyp
ID_Sort
ID_Version
InfoText
Phaenogrammtyp
SpeciesPhenograms {
...SpeciesPhenogramFragment
}
}
}
Variables
{
"limit": 123,
"offset": 987,
"orderBy": SpeciesPhenogramTypesOrderByInput,
"where": SpeciesPhenogramTypesFilterInput
}
Response
{
"data": {
"SpeciesPhenogramTypes": [
{
"Flag_1": true,
"Flag_2": false,
"Flag_3": false,
"Flag_4": false,
"Flag_5": false,
"Flag_6": false,
"Flag_7": true,
"Flag_Deleted": false,
"Flag_Sync": true,
"ID_Phaenogrammtyp": 123,
"ID_Sort": 123,
"ID_Version": 987,
"InfoText": "abc123",
"Phaenogrammtyp": "abc123",
"SpeciesPhenograms": [SpeciesPhenogram]
}
]
}
}
SpeciesPhenograms
Response
Returns [SpeciesPhenogram!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - SpeciesPhenogramsOrderByInput
|
|
where - SpeciesPhenogramsFilterInput
|
Example
Query
query SpeciesPhenograms(
$limit: Int,
$offset: Int,
$orderBy: SpeciesPhenogramsOrderByInput,
$where: SpeciesPhenogramsFilterInput
) {
SpeciesPhenograms(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Bemerkung
Flag_Deleted
Flag_Hauptzeit
Flag_Sync
Flag_Unsicher
ID_Art
ID_Phaenogramm
ID_Phaenogrammtyp
ID_Version
Species {
...SpeciesFragment
}
SpeciesPhenogramType {
...SpeciesPhenogramTypeFragment
}
Zeitraum_Beginn
Zeitraum_Ende
}
}
Variables
{
"limit": 123,
"offset": 123,
"orderBy": SpeciesPhenogramsOrderByInput,
"where": SpeciesPhenogramsFilterInput
}
Response
{
"data": {
"SpeciesPhenograms": [
{
"Bemerkung": "abc123",
"Flag_Deleted": true,
"Flag_Hauptzeit": false,
"Flag_Sync": true,
"Flag_Unsicher": false,
"ID_Art": 987,
"ID_Phaenogramm": 987,
"ID_Phaenogrammtyp": 123,
"ID_Version": 123,
"Species": Species,
"SpeciesPhenogramType": SpeciesPhenogramType,
"Zeitraum_Beginn": 987,
"Zeitraum_Ende": 123
}
]
}
}
TaxonomicRank
Response
Returns a TaxonomicRank!
Arguments
Name | Description |
---|---|
id - Int!
|
TaxonomicRank ID |
Example
Query
query TaxonomicRank($id: Int!) {
TaxonomicRank(id: $id) {
Artentyp
Beschreibung
Flag_Deleted
Flag_Sync
ID_ArtenTyp
ID_Sort
ID_Version
Species {
...SpeciesFragment
}
}
}
Variables
{"id": 987}
Response
{
"data": {
"TaxonomicRank": {
"Artentyp": "abc123",
"Beschreibung": "abc123",
"Flag_Deleted": false,
"Flag_Sync": true,
"ID_ArtenTyp": 987,
"ID_Sort": 123,
"ID_Version": 123,
"Species": [Species]
}
}
}
TaxonomicRanks
Response
Returns [TaxonomicRank!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - TaxonomicRanksOrderByInput
|
|
where - TaxonomicRanksFilterInput
|
Example
Query
query TaxonomicRanks(
$limit: Int,
$offset: Int,
$orderBy: TaxonomicRanksOrderByInput,
$where: TaxonomicRanksFilterInput
) {
TaxonomicRanks(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Artentyp
Beschreibung
Flag_Deleted
Flag_Sync
ID_ArtenTyp
ID_Sort
ID_Version
Species {
...SpeciesFragment
}
}
}
Variables
{
"limit": 987,
"offset": 987,
"orderBy": TaxonomicRanksOrderByInput,
"where": TaxonomicRanksFilterInput
}
Response
{
"data": {
"TaxonomicRanks": [
{
"Artentyp": "abc123",
"Beschreibung": "xyz789",
"Flag_Deleted": true,
"Flag_Sync": true,
"ID_ArtenTyp": 987,
"ID_Sort": 123,
"ID_Version": 987,
"Species": [Species]
}
]
}
}
Unit
Example
Query
query Unit($id: Int!) {
Unit(id: $id) {
Beschreibung
Categories {
...CategoryFragment
}
Einheit
Flag_1
Flag_2
Flag_3
Flag_4
Flag_5
Flag_6
Flag_7
Flag_Deleted
Flag_Sync
Flag_Visible
GUID_Einheit
ID_Einheit
ID_Sort
ID_Version
Kuerzel
Modul_1
Modul_2
Modul_3
Modul_4
Modul_5
Modul_6
Modul_7
Modul_8
Modul_9
Modul_10
Modul_11
Modul_12
Modul_13
Modul_14
Modul_15
RefID
}
}
Variables
{"id": 987}
Response
{
"data": {
"Unit": {
"Beschreibung": "abc123",
"Categories": [Category],
"Einheit": "xyz789",
"Flag_1": false,
"Flag_2": true,
"Flag_3": false,
"Flag_4": true,
"Flag_5": true,
"Flag_6": false,
"Flag_7": false,
"Flag_Deleted": false,
"Flag_Sync": false,
"Flag_Visible": false,
"GUID_Einheit": "abc123",
"ID_Einheit": 987,
"ID_Sort": 987,
"ID_Version": 123,
"Kuerzel": "abc123",
"Modul_1": true,
"Modul_2": false,
"Modul_3": true,
"Modul_4": true,
"Modul_5": false,
"Modul_6": false,
"Modul_7": true,
"Modul_8": false,
"Modul_9": false,
"Modul_10": false,
"Modul_11": false,
"Modul_12": false,
"Modul_13": true,
"Modul_14": true,
"Modul_15": true,
"RefID": 123
}
}
}
Units
Response
Returns [Unit!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - UnitsOrderByInput
|
|
where - UnitsFilterInput
|
Example
Query
query Units(
$limit: Int,
$offset: Int,
$orderBy: UnitsOrderByInput,
$where: UnitsFilterInput
) {
Units(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
Beschreibung
Categories {
...CategoryFragment
}
Einheit
Flag_1
Flag_2
Flag_3
Flag_4
Flag_5
Flag_6
Flag_7
Flag_Deleted
Flag_Sync
Flag_Visible
GUID_Einheit
ID_Einheit
ID_Sort
ID_Version
Kuerzel
Modul_1
Modul_2
Modul_3
Modul_4
Modul_5
Modul_6
Modul_7
Modul_8
Modul_9
Modul_10
Modul_11
Modul_12
Modul_13
Modul_14
Modul_15
RefID
}
}
Variables
{
"limit": 987,
"offset": 123,
"orderBy": UnitsOrderByInput,
"where": UnitsFilterInput
}
Response
{
"data": {
"Units": [
{
"Beschreibung": "xyz789",
"Categories": [Category],
"Einheit": "xyz789",
"Flag_1": true,
"Flag_2": true,
"Flag_3": false,
"Flag_4": true,
"Flag_5": true,
"Flag_6": false,
"Flag_7": false,
"Flag_Deleted": true,
"Flag_Sync": false,
"Flag_Visible": true,
"GUID_Einheit": "xyz789",
"ID_Einheit": 987,
"ID_Sort": 987,
"ID_Version": 987,
"Kuerzel": "abc123",
"Modul_1": true,
"Modul_2": true,
"Modul_3": true,
"Modul_4": true,
"Modul_5": true,
"Modul_6": true,
"Modul_7": true,
"Modul_8": true,
"Modul_9": true,
"Modul_10": false,
"Modul_11": false,
"Modul_12": false,
"Modul_13": true,
"Modul_14": true,
"Modul_15": true,
"RefID": 123
}
]
}
}
UserField
Response
Returns a UserField!
Arguments
Name | Description |
---|---|
id - Int!
|
User field ID |
Example
Query
query UserField($id: Int!) {
UserField(id: $id) {
CountDecimal
Description
Flag_1
Flag_2
Flag_3
Flag_4
Flag_5
Flag_6
Flag_7
Flag_AufnahmeDetails
Flag_Deleted
Flag_Details
Flag_FilterField
Flag_Sync
ID_DT
ID_Datentyp
ID_UF
ID_Version
Kategorie
Modul_1
Modul_2
Modul_3
Modul_4
Modul_5
Modul_6
Modul_7
Modul_8
Modul_9
Modul_10
Modul_11
Modul_12
Modul_13
Modul_14
Modul_15
ObservationDetails {
...ObservationDetailFragment
}
UserField
UserField_English
UserField_French
UserField_German
UserField_Spanish
}
}
Variables
{"id": 987}
Response
{
"data": {
"UserField": {
"CountDecimal": 987,
"Description": "xyz789",
"Flag_1": false,
"Flag_2": false,
"Flag_3": true,
"Flag_4": true,
"Flag_5": false,
"Flag_6": true,
"Flag_7": false,
"Flag_AufnahmeDetails": false,
"Flag_Deleted": false,
"Flag_Details": false,
"Flag_FilterField": true,
"Flag_Sync": true,
"ID_DT": 123,
"ID_Datentyp": 987,
"ID_UF": 123,
"ID_Version": 123,
"Kategorie": "xyz789",
"Modul_1": true,
"Modul_2": true,
"Modul_3": false,
"Modul_4": true,
"Modul_5": true,
"Modul_6": false,
"Modul_7": false,
"Modul_8": true,
"Modul_9": true,
"Modul_10": false,
"Modul_11": false,
"Modul_12": true,
"Modul_13": false,
"Modul_14": false,
"Modul_15": true,
"ObservationDetails": [ObservationDetail],
"UserField": "abc123",
"UserField_English": "abc123",
"UserField_French": "xyz789",
"UserField_German": "xyz789",
"UserField_Spanish": "abc123"
}
}
}
UserFields
Response
Returns [UserField!]!
Arguments
Name | Description |
---|---|
limit - Int
|
Number of rows to retain from the result set |
offset - Int
|
Number of rows to skip from the result set |
orderBy - UserFieldsOrderByInput
|
|
where - UserFieldsFilterInput
|
Example
Query
query UserFields(
$limit: Int,
$offset: Int,
$orderBy: UserFieldsOrderByInput,
$where: UserFieldsFilterInput
) {
UserFields(
limit: $limit,
offset: $offset,
orderBy: $orderBy,
where: $where
) {
CountDecimal
Description
Flag_1
Flag_2
Flag_3
Flag_4
Flag_5
Flag_6
Flag_7
Flag_AufnahmeDetails
Flag_Deleted
Flag_Details
Flag_FilterField
Flag_Sync
ID_DT
ID_Datentyp
ID_UF
ID_Version
Kategorie
Modul_1
Modul_2
Modul_3
Modul_4
Modul_5
Modul_6
Modul_7
Modul_8
Modul_9
Modul_10
Modul_11
Modul_12
Modul_13
Modul_14
Modul_15
ObservationDetails {
...ObservationDetailFragment
}
UserField
UserField_English
UserField_French
UserField_German
UserField_Spanish
}
}
Variables
{
"limit": 123,
"offset": 987,
"orderBy": UserFieldsOrderByInput,
"where": UserFieldsFilterInput
}
Response
{
"data": {
"UserFields": [
{
"CountDecimal": 987,
"Description": "abc123",
"Flag_1": true,
"Flag_2": true,
"Flag_3": false,
"Flag_4": true,
"Flag_5": true,
"Flag_6": false,
"Flag_7": true,
"Flag_AufnahmeDetails": true,
"Flag_Deleted": false,
"Flag_Details": true,
"Flag_FilterField": false,
"Flag_Sync": true,
"ID_DT": 123,
"ID_Datentyp": 987,
"ID_UF": 987,
"ID_Version": 987,
"Kategorie": "xyz789",
"Modul_1": false,
"Modul_2": false,
"Modul_3": false,
"Modul_4": false,
"Modul_5": false,
"Modul_6": false,
"Modul_7": true,
"Modul_8": true,
"Modul_9": true,
"Modul_10": false,
"Modul_11": false,
"Modul_12": true,
"Modul_13": false,
"Modul_14": false,
"Modul_15": false,
"ObservationDetails": [ObservationDetail],
"UserField": "xyz789",
"UserField_English": "xyz789",
"UserField_French": "abc123",
"UserField_German": "xyz789",
"UserField_Spanish": "xyz789"
}
]
}
}
Mutations
deleteReportingPortalPage
Response
Returns a ReportingPortalPage!
Example
Query
mutation deleteReportingPortalPage(
$ID_Cloud: Int!,
$id_meldeportal_page: Int!
) {
deleteReportingPortalPage(
ID_Cloud: $ID_Cloud,
id_meldeportal_page: $id_meldeportal_page
) {
ReportingPortal {
...ReportingPortalFragment
}
id_meldeportal
id_meldeportal_page
is_public
report_type
settings
settings_schema_version
url_path
}
}
Variables
{"ID_Cloud": 123, "id_meldeportal_page": 987}
Response
{
"data": {
"deleteReportingPortalPage": {
"ReportingPortal": ReportingPortal,
"id_meldeportal": 123.45,
"id_meldeportal_page": 123.45,
"is_public": true,
"report_type": "xyz789",
"settings": "xyz789",
"settings_schema_version": "abc123",
"url_path": "abc123"
}
}
}
insertCloudFile
Response
Returns a CloudFile!
Arguments
Name | Description |
---|---|
Autor - String
|
File author |
Bemerkung - String
|
File comment |
Copyright - String
|
File copyright |
Date_FileChanged - DateTime
|
Date of last file change |
GUID_File - String
|
File GUID |
GUID_Parent - String!
|
Parent GUID |
ID_Cloud - Int!
|
Cloud ID |
Titel - String
|
File title |
file - Upload!
|
Example
Query
mutation insertCloudFile(
$Autor: String,
$Bemerkung: String,
$Copyright: String,
$Date_FileChanged: DateTime,
$GUID_File: String,
$GUID_Parent: String!,
$ID_Cloud: Int!,
$Titel: String,
$file: Upload!
) {
insertCloudFile(
Autor: $Autor,
Bemerkung: $Bemerkung,
Copyright: $Copyright,
Date_FileChanged: $Date_FileChanged,
GUID_File: $GUID_File,
GUID_Parent: $GUID_Parent,
ID_Cloud: $ID_Cloud,
Titel: $Titel,
file: $file
) {
Auftragnehmer
Autor
AutorOeffentlich
Bemerkung
Copyright
Date_Changed
Date_Create
Date_FileChanged
Date_FileInserted
Date_Recording
Date_Service
FileExtension
FileName
FileSize
FileSourcePath
FileURL
Flag_Deleted
GUID_File
GUID_Import
GUID_Parent
ID_Cloud
ID_File
ID_Freigabe
ID_Motiv
Motiv
Thumb
Titel
}
}
Variables
{
"Autor": "abc123",
"Bemerkung": "xyz789",
"Copyright": "xyz789",
"Date_FileChanged": "2007-12-03T10:15:30Z",
"GUID_File": "xyz789",
"GUID_Parent": "abc123",
"ID_Cloud": 987,
"Titel": "xyz789",
"file": Upload
}
Response
{
"data": {
"insertCloudFile": {
"Auftragnehmer": "xyz789",
"Autor": "xyz789",
"AutorOeffentlich": "abc123",
"Bemerkung": "xyz789",
"Copyright": "abc123",
"Date_Changed": "2007-12-03T10:15:30Z",
"Date_Create": "2007-12-03T10:15:30Z",
"Date_FileChanged": "2007-12-03T10:15:30Z",
"Date_FileInserted": "2007-12-03T10:15:30Z",
"Date_Recording": "2007-12-03T10:15:30Z",
"Date_Service": "2007-12-03T10:15:30Z",
"FileExtension": "abc123",
"FileName": "xyz789",
"FileSize": 987.65,
"FileSourcePath": "xyz789",
"FileURL": "xyz789",
"Flag_Deleted": false,
"GUID_File": "abc123",
"GUID_Import": "xyz789",
"GUID_Parent": "xyz789",
"ID_Cloud": 987.65,
"ID_File": 123.45,
"ID_Freigabe": 123.45,
"ID_Motiv": 987.65,
"Motiv": "abc123",
"Thumb": "xyz789",
"Titel": "abc123"
}
}
}
insertObservation
Response
Returns an Observation!
Arguments
Name | Description |
---|---|
ID_Cloud - Int!
|
|
object - InsertObservationInput!
|
Example
Query
mutation insertObservation(
$ID_Cloud: Int!,
$object: InsertObservationInput!
) {
insertObservation(
ID_Cloud: $ID_Cloud,
object: $object
) {
Allochthonie
Anzahl
AnzahlAdult
AnzahlBluehend
AnzahlGeschAdult
AnzahlGeschGesamt
AnzahlGeschJuvenil
AnzahlJuvenil
AnzahlMaennl
AnzahlNichtBluehend
AnzahlTFAdult
AnzahlTFJuvenil
AnzahlWFMaennl
AnzahlWFWeibl
AnzahlWeibl
Anzahl_1
Anzahl_2
Anzahl_3
Anzahl_4
Anzahl_5
Anzahl_6
Anzahl_7
Anzahl_8
Anzahl_9
Anzahl_10
Anzahl_11
Anzahl_12
Anzahl_Max
Anzahl_Min
Bemerkung
Biotop
Date_Changed
Date_Create
Date_Service
Datum
Datum_GeprueftAm
Details
Erfassungsname
Flag
Flag_Aggregiert
Flag_Basisort
Flag_Beringung
Flag_Deleted
Flag_Export
Flag_Filter
Flag_Intern
Flag_Trash
GUID_Atlas
GUID_Beobachter
GUID_Bestimmer
GUID_Daten
GUID_Datenbankherkunft
GUID_GeprueftVon
GUID_Group
GUID_Herkunft
GUID_Import
GUID_Kasten
GUID_Ort
GUID_Sammlung
GUID_User
Geprueft_Info
Hoehe
ID_AddIn
ID_Alter
ID_Art
ID_Art_Negativnachweis
ID_Art_NichtKartiert
ID_Besatz
ID_Cloud
ID_Daten
ID_Deckungsgrad
ID_Einheit
ID_FundTyp
ID_GenauigkeitAnzahl
ID_GenauigkeitDatum
ID_Habitat
ID_Herausgabegenauigkeit
ID_Kategorie
ID_Material
ID_Nachweissicherheit
ID_Nachweistyp
ID_Qualitaet
ID_Quartiertyp
ID_Reproduktion
ID_Revierstatus
ID_Schicht
ID_Stadium
ID_Substrat
ID_Substratzustand
ID_Toleranz
ID_Traegerbaum
ID_Verhalten
ID_Verwendung
ID_Wuchsstelle
Jahr
LAEACellCode
LAEARaster
Len5Finger
LenDaumen
LenUnterarm
MTB
MTBQ
Masse
Masse_kg_gesamt
Merkmal
Monat
MonitoringDatas {
...MonitoringDataFragment
}
ObservationAdditionalData {
...ObservationAdditionalDataFragment
}
ObservationDetails {
...ObservationDetailFragment
}
Ortsbezeichnung
Quelle
Raster
RefID
ReferenzNr
Region
Ringnummer
RingnummerText
Ringserie
Vector_Grad
Vector_Meter
Zentrale
sDBHerkunft
xWGS84
yWGS84
}
}
Variables
{"ID_Cloud": 123, "object": InsertObservationInput}
Response
{
"data": {
"insertObservation": {
"Allochthonie": false,
"Anzahl": "abc123",
"AnzahlAdult": 987,
"AnzahlBluehend": 987,
"AnzahlGeschAdult": 987,
"AnzahlGeschGesamt": 987,
"AnzahlGeschJuvenil": 987,
"AnzahlJuvenil": 987,
"AnzahlMaennl": 987,
"AnzahlNichtBluehend": 987,
"AnzahlTFAdult": 123,
"AnzahlTFJuvenil": 123,
"AnzahlWFMaennl": 987,
"AnzahlWFWeibl": 123,
"AnzahlWeibl": 987,
"Anzahl_1": 123,
"Anzahl_2": 123,
"Anzahl_3": 987,
"Anzahl_4": 123,
"Anzahl_5": 123,
"Anzahl_6": 987,
"Anzahl_7": 123,
"Anzahl_8": 123,
"Anzahl_9": 123,
"Anzahl_10": 987,
"Anzahl_11": 123,
"Anzahl_12": 123,
"Anzahl_Max": 123,
"Anzahl_Min": 123,
"Bemerkung": "xyz789",
"Biotop": "xyz789",
"Date_Changed": "2007-12-03T10:15:30Z",
"Date_Create": "2007-12-03T10:15:30Z",
"Date_Service": "2007-12-03T10:15:30Z",
"Datum": "2007-12-03T10:15:30Z",
"Datum_GeprueftAm": "2007-12-03T10:15:30Z",
"Details": "xyz789",
"Erfassungsname": "xyz789",
"Flag": false,
"Flag_Aggregiert": true,
"Flag_Basisort": true,
"Flag_Beringung": true,
"Flag_Deleted": false,
"Flag_Export": false,
"Flag_Filter": true,
"Flag_Intern": false,
"Flag_Trash": true,
"GUID_Atlas": "abc123",
"GUID_Beobachter": "xyz789",
"GUID_Bestimmer": "xyz789",
"GUID_Daten": "abc123",
"GUID_Datenbankherkunft": "xyz789",
"GUID_GeprueftVon": "xyz789",
"GUID_Group": "xyz789",
"GUID_Herkunft": "xyz789",
"GUID_Import": "xyz789",
"GUID_Kasten": "xyz789",
"GUID_Ort": "abc123",
"GUID_Sammlung": "abc123",
"GUID_User": "xyz789",
"Geprueft_Info": "xyz789",
"Hoehe": 123,
"ID_AddIn": 123,
"ID_Alter": 987,
"ID_Art": 123,
"ID_Art_Negativnachweis": 123,
"ID_Art_NichtKartiert": 123,
"ID_Besatz": 123,
"ID_Cloud": 987,
"ID_Daten": 987,
"ID_Deckungsgrad": 123,
"ID_Einheit": 123,
"ID_FundTyp": 987,
"ID_GenauigkeitAnzahl": 123,
"ID_GenauigkeitDatum": 987,
"ID_Habitat": 987,
"ID_Herausgabegenauigkeit": 123,
"ID_Kategorie": 123,
"ID_Material": 123,
"ID_Nachweissicherheit": 123,
"ID_Nachweistyp": 987,
"ID_Qualitaet": 123,
"ID_Quartiertyp": 123,
"ID_Reproduktion": 123,
"ID_Revierstatus": 123,
"ID_Schicht": 987,
"ID_Stadium": 987,
"ID_Substrat": 987,
"ID_Substratzustand": 987,
"ID_Toleranz": 123,
"ID_Traegerbaum": 123,
"ID_Verhalten": 123,
"ID_Verwendung": 987,
"ID_Wuchsstelle": 987,
"Jahr": 987,
"LAEACellCode": 123,
"LAEARaster": "abc123",
"Len5Finger": 123.45,
"LenDaumen": 987.65,
"LenUnterarm": 987.65,
"MTB": 987,
"MTBQ": 987,
"Masse": 123.45,
"Masse_kg_gesamt": 123.45,
"Merkmal": "xyz789",
"Monat": 123,
"MonitoringDatas": [MonitoringData],
"ObservationAdditionalData": ObservationAdditionalData,
"ObservationDetails": [ObservationDetail],
"Ortsbezeichnung": "xyz789",
"Quelle": "xyz789",
"Raster": "xyz789",
"RefID": 123,
"ReferenzNr": "abc123",
"Region": "xyz789",
"Ringnummer": "xyz789",
"RingnummerText": "xyz789",
"Ringserie": "xyz789",
"Vector_Grad": 987,
"Vector_Meter": 987,
"Zentrale": "xyz789",
"sDBHerkunft": "abc123",
"xWGS84": 123.45,
"yWGS84": 123.45
}
}
}
insertObservations
Response
Returns [Observation!]!
Arguments
Name | Description |
---|---|
ID_Cloud - Int!
|
|
objects - [InsertObservationInput!]!
|
Example
Query
mutation insertObservations(
$ID_Cloud: Int!,
$objects: [InsertObservationInput!]!
) {
insertObservations(
ID_Cloud: $ID_Cloud,
objects: $objects
) {
Allochthonie
Anzahl
AnzahlAdult
AnzahlBluehend
AnzahlGeschAdult
AnzahlGeschGesamt
AnzahlGeschJuvenil
AnzahlJuvenil
AnzahlMaennl
AnzahlNichtBluehend
AnzahlTFAdult
AnzahlTFJuvenil
AnzahlWFMaennl
AnzahlWFWeibl
AnzahlWeibl
Anzahl_1
Anzahl_2
Anzahl_3
Anzahl_4
Anzahl_5
Anzahl_6
Anzahl_7
Anzahl_8
Anzahl_9
Anzahl_10
Anzahl_11
Anzahl_12
Anzahl_Max
Anzahl_Min
Bemerkung
Biotop
Date_Changed
Date_Create
Date_Service
Datum
Datum_GeprueftAm
Details
Erfassungsname
Flag
Flag_Aggregiert
Flag_Basisort
Flag_Beringung
Flag_Deleted
Flag_Export
Flag_Filter
Flag_Intern
Flag_Trash
GUID_Atlas
GUID_Beobachter
GUID_Bestimmer
GUID_Daten
GUID_Datenbankherkunft
GUID_GeprueftVon
GUID_Group
GUID_Herkunft
GUID_Import
GUID_Kasten
GUID_Ort
GUID_Sammlung
GUID_User
Geprueft_Info
Hoehe
ID_AddIn
ID_Alter
ID_Art
ID_Art_Negativnachweis
ID_Art_NichtKartiert
ID_Besatz
ID_Cloud
ID_Daten
ID_Deckungsgrad
ID_Einheit
ID_FundTyp
ID_GenauigkeitAnzahl
ID_GenauigkeitDatum
ID_Habitat
ID_Herausgabegenauigkeit
ID_Kategorie
ID_Material
ID_Nachweissicherheit
ID_Nachweistyp
ID_Qualitaet
ID_Quartiertyp
ID_Reproduktion
ID_Revierstatus
ID_Schicht
ID_Stadium
ID_Substrat
ID_Substratzustand
ID_Toleranz
ID_Traegerbaum
ID_Verhalten
ID_Verwendung
ID_Wuchsstelle
Jahr
LAEACellCode
LAEARaster
Len5Finger
LenDaumen
LenUnterarm
MTB
MTBQ
Masse
Masse_kg_gesamt
Merkmal
Monat
MonitoringDatas {
...MonitoringDataFragment
}
ObservationAdditionalData {
...ObservationAdditionalDataFragment
}
ObservationDetails {
...ObservationDetailFragment
}
Ortsbezeichnung
Quelle
Raster
RefID
ReferenzNr
Region
Ringnummer
RingnummerText
Ringserie
Vector_Grad
Vector_Meter
Zentrale
sDBHerkunft
xWGS84
yWGS84
}
}
Variables
{"ID_Cloud": 123, "objects": [InsertObservationInput]}
Response
{
"data": {
"insertObservations": [
{
"Allochthonie": true,
"Anzahl": "xyz789",
"AnzahlAdult": 123,
"AnzahlBluehend": 987,
"AnzahlGeschAdult": 987,
"AnzahlGeschGesamt": 987,
"AnzahlGeschJuvenil": 987,
"AnzahlJuvenil": 123,
"AnzahlMaennl": 123,
"AnzahlNichtBluehend": 123,
"AnzahlTFAdult": 987,
"AnzahlTFJuvenil": 987,
"AnzahlWFMaennl": 123,
"AnzahlWFWeibl": 987,
"AnzahlWeibl": 987,
"Anzahl_1": 123,
"Anzahl_2": 987,
"Anzahl_3": 123,
"Anzahl_4": 987,
"Anzahl_5": 123,
"Anzahl_6": 123,
"Anzahl_7": 987,
"Anzahl_8": 123,
"Anzahl_9": 987,
"Anzahl_10": 123,
"Anzahl_11": 987,
"Anzahl_12": 123,
"Anzahl_Max": 123,
"Anzahl_Min": 123,
"Bemerkung": "xyz789",
"Biotop": "abc123",
"Date_Changed": "2007-12-03T10:15:30Z",
"Date_Create": "2007-12-03T10:15:30Z",
"Date_Service": "2007-12-03T10:15:30Z",
"Datum": "2007-12-03T10:15:30Z",
"Datum_GeprueftAm": "2007-12-03T10:15:30Z",
"Details": "abc123",
"Erfassungsname": "abc123",
"Flag": true,
"Flag_Aggregiert": false,
"Flag_Basisort": true,
"Flag_Beringung": false,
"Flag_Deleted": true,
"Flag_Export": true,
"Flag_Filter": false,
"Flag_Intern": false,
"Flag_Trash": false,
"GUID_Atlas": "xyz789",
"GUID_Beobachter": "abc123",
"GUID_Bestimmer": "xyz789",
"GUID_Daten": "xyz789",
"GUID_Datenbankherkunft": "abc123",
"GUID_GeprueftVon": "xyz789",
"GUID_Group": "xyz789",
"GUID_Herkunft": "xyz789",
"GUID_Import": "xyz789",
"GUID_Kasten": "abc123",
"GUID_Ort": "abc123",
"GUID_Sammlung": "xyz789",
"GUID_User": "xyz789",
"Geprueft_Info": "abc123",
"Hoehe": 987,
"ID_AddIn": 123,
"ID_Alter": 123,
"ID_Art": 987,
"ID_Art_Negativnachweis": 123,
"ID_Art_NichtKartiert": 123,
"ID_Besatz": 987,
"ID_Cloud": 987,
"ID_Daten": 123,
"ID_Deckungsgrad": 123,
"ID_Einheit": 123,
"ID_FundTyp": 987,
"ID_GenauigkeitAnzahl": 987,
"ID_GenauigkeitDatum": 987,
"ID_Habitat": 987,
"ID_Herausgabegenauigkeit": 123,
"ID_Kategorie": 123,
"ID_Material": 987,
"ID_Nachweissicherheit": 123,
"ID_Nachweistyp": 987,
"ID_Qualitaet": 123,
"ID_Quartiertyp": 123,
"ID_Reproduktion": 987,
"ID_Revierstatus": 123,
"ID_Schicht": 987,
"ID_Stadium": 123,
"ID_Substrat": 123,
"ID_Substratzustand": 987,
"ID_Toleranz": 987,
"ID_Traegerbaum": 123,
"ID_Verhalten": 987,
"ID_Verwendung": 987,
"ID_Wuchsstelle": 987,
"Jahr": 123,
"LAEACellCode": 123,
"LAEARaster": "xyz789",
"Len5Finger": 987.65,
"LenDaumen": 123.45,
"LenUnterarm": 987.65,
"MTB": 987,
"MTBQ": 987,
"Masse": 123.45,
"Masse_kg_gesamt": 987.65,
"Merkmal": "xyz789",
"Monat": 987,
"MonitoringDatas": [MonitoringData],
"ObservationAdditionalData": ObservationAdditionalData,
"ObservationDetails": [ObservationDetail],
"Ortsbezeichnung": "abc123",
"Quelle": "abc123",
"Raster": "abc123",
"RefID": 987,
"ReferenzNr": "xyz789",
"Region": "abc123",
"Ringnummer": "abc123",
"RingnummerText": "xyz789",
"Ringserie": "abc123",
"Vector_Grad": 987,
"Vector_Meter": 123,
"Zentrale": "xyz789",
"sDBHerkunft": "xyz789",
"xWGS84": 987.65,
"yWGS84": 987.65
}
]
}
}
insertReportingPortal
Response
Returns a ReportingPortal!
Example
Query
mutation insertReportingPortal(
$ID_Cloud: Int!,
$settings: String,
$settings_schema_version: String,
$subdomain: String!
) {
insertReportingPortal(
ID_Cloud: $ID_Cloud,
settings: $settings,
settings_schema_version: $settings_schema_version,
subdomain: $subdomain
) {
Cloud {
...CloudFragment
}
ID_Cloud
ReportingPortalPages {
...ReportingPortalPageFragment
}
id_meldeportal
settings
settings_schema_version
subdomain
}
}
Variables
{
"ID_Cloud": 987,
"settings": "abc123",
"settings_schema_version": "abc123",
"subdomain": "xyz789"
}
Response
{
"data": {
"insertReportingPortal": {
"Cloud": Cloud,
"ID_Cloud": 123.45,
"ReportingPortalPages": [ReportingPortalPage],
"id_meldeportal": 987.65,
"settings": "xyz789",
"settings_schema_version": "xyz789",
"subdomain": "xyz789"
}
}
}
insertReportingPortalPage
Response
Returns a ReportingPortalPage!
Arguments
Name | Description |
---|---|
ID_Cloud - Int!
|
Cloud ID |
id_meldeportal - Int!
|
Reporting portal ID |
is_public - Boolean!
|
Reporting portal page is publicly visible |
report_type - String!
|
Reporting portal page report type |
settings - String!
|
Reporting portal page settings (stringified JSON) |
settings_schema_version - String!
|
Reporting portal page settings schema version |
url_path - String!
|
Reporting portal page url slug |
Example
Query
mutation insertReportingPortalPage(
$ID_Cloud: Int!,
$id_meldeportal: Int!,
$is_public: Boolean!,
$report_type: String!,
$settings: String!,
$settings_schema_version: String!,
$url_path: String!
) {
insertReportingPortalPage(
ID_Cloud: $ID_Cloud,
id_meldeportal: $id_meldeportal,
is_public: $is_public,
report_type: $report_type,
settings: $settings,
settings_schema_version: $settings_schema_version,
url_path: $url_path
) {
ReportingPortal {
...ReportingPortalFragment
}
id_meldeportal
id_meldeportal_page
is_public
report_type
settings
settings_schema_version
url_path
}
}
Variables
{
"ID_Cloud": 987,
"id_meldeportal": 123,
"is_public": true,
"report_type": "xyz789",
"settings": "abc123",
"settings_schema_version": "xyz789",
"url_path": "abc123"
}
Response
{
"data": {
"insertReportingPortalPage": {
"ReportingPortal": ReportingPortal,
"id_meldeportal": 987.65,
"id_meldeportal_page": 987.65,
"is_public": false,
"report_type": "xyz789",
"settings": "xyz789",
"settings_schema_version": "abc123",
"url_path": "abc123"
}
}
}
updateObservation
Response
Returns an Observation!
Arguments
Name | Description |
---|---|
ID_Cloud - Int!
|
|
object - UpdateObservationInput!
|
Example
Query
mutation updateObservation(
$ID_Cloud: Int!,
$object: UpdateObservationInput!
) {
updateObservation(
ID_Cloud: $ID_Cloud,
object: $object
) {
Allochthonie
Anzahl
AnzahlAdult
AnzahlBluehend
AnzahlGeschAdult
AnzahlGeschGesamt
AnzahlGeschJuvenil
AnzahlJuvenil
AnzahlMaennl
AnzahlNichtBluehend
AnzahlTFAdult
AnzahlTFJuvenil
AnzahlWFMaennl
AnzahlWFWeibl
AnzahlWeibl
Anzahl_1
Anzahl_2
Anzahl_3
Anzahl_4
Anzahl_5
Anzahl_6
Anzahl_7
Anzahl_8
Anzahl_9
Anzahl_10
Anzahl_11
Anzahl_12
Anzahl_Max
Anzahl_Min
Bemerkung
Biotop
Date_Changed
Date_Create
Date_Service
Datum
Datum_GeprueftAm
Details
Erfassungsname
Flag
Flag_Aggregiert
Flag_Basisort
Flag_Beringung
Flag_Deleted
Flag_Export
Flag_Filter
Flag_Intern
Flag_Trash
GUID_Atlas
GUID_Beobachter
GUID_Bestimmer
GUID_Daten
GUID_Datenbankherkunft
GUID_GeprueftVon
GUID_Group
GUID_Herkunft
GUID_Import
GUID_Kasten
GUID_Ort
GUID_Sammlung
GUID_User
Geprueft_Info
Hoehe
ID_AddIn
ID_Alter
ID_Art
ID_Art_Negativnachweis
ID_Art_NichtKartiert
ID_Besatz
ID_Cloud
ID_Daten
ID_Deckungsgrad
ID_Einheit
ID_FundTyp
ID_GenauigkeitAnzahl
ID_GenauigkeitDatum
ID_Habitat
ID_Herausgabegenauigkeit
ID_Kategorie
ID_Material
ID_Nachweissicherheit
ID_Nachweistyp
ID_Qualitaet
ID_Quartiertyp
ID_Reproduktion
ID_Revierstatus
ID_Schicht
ID_Stadium
ID_Substrat
ID_Substratzustand
ID_Toleranz
ID_Traegerbaum
ID_Verhalten
ID_Verwendung
ID_Wuchsstelle
Jahr
LAEACellCode
LAEARaster
Len5Finger
LenDaumen
LenUnterarm
MTB
MTBQ
Masse
Masse_kg_gesamt
Merkmal
Monat
MonitoringDatas {
...MonitoringDataFragment
}
ObservationAdditionalData {
...ObservationAdditionalDataFragment
}
ObservationDetails {
...ObservationDetailFragment
}
Ortsbezeichnung
Quelle
Raster
RefID
ReferenzNr
Region
Ringnummer
RingnummerText
Ringserie
Vector_Grad
Vector_Meter
Zentrale
sDBHerkunft
xWGS84
yWGS84
}
}
Variables
{"ID_Cloud": 987, "object": UpdateObservationInput}
Response
{
"data": {
"updateObservation": {
"Allochthonie": true,
"Anzahl": "abc123",
"AnzahlAdult": 987,
"AnzahlBluehend": 123,
"AnzahlGeschAdult": 987,
"AnzahlGeschGesamt": 987,
"AnzahlGeschJuvenil": 987,
"AnzahlJuvenil": 987,
"AnzahlMaennl": 123,
"AnzahlNichtBluehend": 987,
"AnzahlTFAdult": 123,
"AnzahlTFJuvenil": 123,
"AnzahlWFMaennl": 987,
"AnzahlWFWeibl": 123,
"AnzahlWeibl": 987,
"Anzahl_1": 123,
"Anzahl_2": 987,
"Anzahl_3": 123,
"Anzahl_4": 987,
"Anzahl_5": 987,
"Anzahl_6": 987,
"Anzahl_7": 987,
"Anzahl_8": 987,
"Anzahl_9": 987,
"Anzahl_10": 987,
"Anzahl_11": 123,
"Anzahl_12": 123,
"Anzahl_Max": 987,
"Anzahl_Min": 987,
"Bemerkung": "abc123",
"Biotop": "xyz789",
"Date_Changed": "2007-12-03T10:15:30Z",
"Date_Create": "2007-12-03T10:15:30Z",
"Date_Service": "2007-12-03T10:15:30Z",
"Datum": "2007-12-03T10:15:30Z",
"Datum_GeprueftAm": "2007-12-03T10:15:30Z",
"Details": "xyz789",
"Erfassungsname": "xyz789",
"Flag": true,
"Flag_Aggregiert": false,
"Flag_Basisort": false,
"Flag_Beringung": false,
"Flag_Deleted": false,
"Flag_Export": true,
"Flag_Filter": true,
"Flag_Intern": false,
"Flag_Trash": false,
"GUID_Atlas": "abc123",
"GUID_Beobachter": "xyz789",
"GUID_Bestimmer": "xyz789",
"GUID_Daten": "xyz789",
"GUID_Datenbankherkunft": "xyz789",
"GUID_GeprueftVon": "xyz789",
"GUID_Group": "abc123",
"GUID_Herkunft": "abc123",
"GUID_Import": "abc123",
"GUID_Kasten": "abc123",
"GUID_Ort": "xyz789",
"GUID_Sammlung": "xyz789",
"GUID_User": "abc123",
"Geprueft_Info": "abc123",
"Hoehe": 987,
"ID_AddIn": 987,
"ID_Alter": 987,
"ID_Art": 987,
"ID_Art_Negativnachweis": 987,
"ID_Art_NichtKartiert": 123,
"ID_Besatz": 987,
"ID_Cloud": 123,
"ID_Daten": 123,
"ID_Deckungsgrad": 987,
"ID_Einheit": 987,
"ID_FundTyp": 123,
"ID_GenauigkeitAnzahl": 123,
"ID_GenauigkeitDatum": 123,
"ID_Habitat": 987,
"ID_Herausgabegenauigkeit": 987,
"ID_Kategorie": 987,
"ID_Material": 987,
"ID_Nachweissicherheit": 987,
"ID_Nachweistyp": 123,
"ID_Qualitaet": 987,
"ID_Quartiertyp": 123,
"ID_Reproduktion": 123,
"ID_Revierstatus": 987,
"ID_Schicht": 123,
"ID_Stadium": 987,
"ID_Substrat": 987,
"ID_Substratzustand": 987,
"ID_Toleranz": 123,
"ID_Traegerbaum": 123,
"ID_Verhalten": 123,
"ID_Verwendung": 123,
"ID_Wuchsstelle": 987,
"Jahr": 987,
"LAEACellCode": 123,
"LAEARaster": "xyz789",
"Len5Finger": 123.45,
"LenDaumen": 987.65,
"LenUnterarm": 987.65,
"MTB": 123,
"MTBQ": 987,
"Masse": 123.45,
"Masse_kg_gesamt": 987.65,
"Merkmal": "abc123",
"Monat": 123,
"MonitoringDatas": [MonitoringData],
"ObservationAdditionalData": ObservationAdditionalData,
"ObservationDetails": [ObservationDetail],
"Ortsbezeichnung": "abc123",
"Quelle": "xyz789",
"Raster": "xyz789",
"RefID": 987,
"ReferenzNr": "xyz789",
"Region": "xyz789",
"Ringnummer": "abc123",
"RingnummerText": "xyz789",
"Ringserie": "xyz789",
"Vector_Grad": 123,
"Vector_Meter": 987,
"Zentrale": "abc123",
"sDBHerkunft": "abc123",
"xWGS84": 987.65,
"yWGS84": 987.65
}
}
}
updateObservations
Response
Returns [Observation!]!
Arguments
Name | Description |
---|---|
ID_Cloud - Int!
|
|
objects - [UpdateObservationInput!]!
|
Example
Query
mutation updateObservations(
$ID_Cloud: Int!,
$objects: [UpdateObservationInput!]!
) {
updateObservations(
ID_Cloud: $ID_Cloud,
objects: $objects
) {
Allochthonie
Anzahl
AnzahlAdult
AnzahlBluehend
AnzahlGeschAdult
AnzahlGeschGesamt
AnzahlGeschJuvenil
AnzahlJuvenil
AnzahlMaennl
AnzahlNichtBluehend
AnzahlTFAdult
AnzahlTFJuvenil
AnzahlWFMaennl
AnzahlWFWeibl
AnzahlWeibl
Anzahl_1
Anzahl_2
Anzahl_3
Anzahl_4
Anzahl_5
Anzahl_6
Anzahl_7
Anzahl_8
Anzahl_9
Anzahl_10
Anzahl_11
Anzahl_12
Anzahl_Max
Anzahl_Min
Bemerkung
Biotop
Date_Changed
Date_Create
Date_Service
Datum
Datum_GeprueftAm
Details
Erfassungsname
Flag
Flag_Aggregiert
Flag_Basisort
Flag_Beringung
Flag_Deleted
Flag_Export
Flag_Filter
Flag_Intern
Flag_Trash
GUID_Atlas
GUID_Beobachter
GUID_Bestimmer
GUID_Daten
GUID_Datenbankherkunft
GUID_GeprueftVon
GUID_Group
GUID_Herkunft
GUID_Import
GUID_Kasten
GUID_Ort
GUID_Sammlung
GUID_User
Geprueft_Info
Hoehe
ID_AddIn
ID_Alter
ID_Art
ID_Art_Negativnachweis
ID_Art_NichtKartiert
ID_Besatz
ID_Cloud
ID_Daten
ID_Deckungsgrad
ID_Einheit
ID_FundTyp
ID_GenauigkeitAnzahl
ID_GenauigkeitDatum
ID_Habitat
ID_Herausgabegenauigkeit
ID_Kategorie
ID_Material
ID_Nachweissicherheit
ID_Nachweistyp
ID_Qualitaet
ID_Quartiertyp
ID_Reproduktion
ID_Revierstatus
ID_Schicht
ID_Stadium
ID_Substrat
ID_Substratzustand
ID_Toleranz
ID_Traegerbaum
ID_Verhalten
ID_Verwendung
ID_Wuchsstelle
Jahr
LAEACellCode
LAEARaster
Len5Finger
LenDaumen
LenUnterarm
MTB
MTBQ
Masse
Masse_kg_gesamt
Merkmal
Monat
MonitoringDatas {
...MonitoringDataFragment
}
ObservationAdditionalData {
...ObservationAdditionalDataFragment
}
ObservationDetails {
...ObservationDetailFragment
}
Ortsbezeichnung
Quelle
Raster
RefID
ReferenzNr
Region
Ringnummer
RingnummerText
Ringserie
Vector_Grad
Vector_Meter
Zentrale
sDBHerkunft
xWGS84
yWGS84
}
}
Variables
{"ID_Cloud": 123, "objects": [UpdateObservationInput]}
Response
{
"data": {
"updateObservations": [
{
"Allochthonie": true,
"Anzahl": "abc123",
"AnzahlAdult": 123,
"AnzahlBluehend": 987,
"AnzahlGeschAdult": 987,
"AnzahlGeschGesamt": 987,
"AnzahlGeschJuvenil": 987,
"AnzahlJuvenil": 123,
"AnzahlMaennl": 987,
"AnzahlNichtBluehend": 987,
"AnzahlTFAdult": 987,
"AnzahlTFJuvenil": 987,
"AnzahlWFMaennl": 987,
"AnzahlWFWeibl": 123,
"AnzahlWeibl": 987,
"Anzahl_1": 987,
"Anzahl_2": 987,
"Anzahl_3": 123,
"Anzahl_4": 123,
"Anzahl_5": 123,
"Anzahl_6": 123,
"Anzahl_7": 123,
"Anzahl_8": 987,
"Anzahl_9": 123,
"Anzahl_10": 123,
"Anzahl_11": 123,
"Anzahl_12": 123,
"Anzahl_Max": 123,
"Anzahl_Min": 987,
"Bemerkung": "xyz789",
"Biotop": "abc123",
"Date_Changed": "2007-12-03T10:15:30Z",
"Date_Create": "2007-12-03T10:15:30Z",
"Date_Service": "2007-12-03T10:15:30Z",
"Datum": "2007-12-03T10:15:30Z",
"Datum_GeprueftAm": "2007-12-03T10:15:30Z",
"Details": "abc123",
"Erfassungsname": "xyz789",
"Flag": true,
"Flag_Aggregiert": true,
"Flag_Basisort": false,
"Flag_Beringung": true,
"Flag_Deleted": false,
"Flag_Export": false,
"Flag_Filter": false,
"Flag_Intern": true,
"Flag_Trash": true,
"GUID_Atlas": "abc123",
"GUID_Beobachter": "abc123",
"GUID_Bestimmer": "abc123",
"GUID_Daten": "abc123",
"GUID_Datenbankherkunft": "xyz789",
"GUID_GeprueftVon": "xyz789",
"GUID_Group": "abc123",
"GUID_Herkunft": "xyz789",
"GUID_Import": "xyz789",
"GUID_Kasten": "xyz789",
"GUID_Ort": "xyz789",
"GUID_Sammlung": "xyz789",
"GUID_User": "abc123",
"Geprueft_Info": "abc123",
"Hoehe": 987,
"ID_AddIn": 987,
"ID_Alter": 123,
"ID_Art": 987,
"ID_Art_Negativnachweis": 987,
"ID_Art_NichtKartiert": 123,
"ID_Besatz": 123,
"ID_Cloud": 987,
"ID_Daten": 987,
"ID_Deckungsgrad": 123,
"ID_Einheit": 123,
"ID_FundTyp": 987,
"ID_GenauigkeitAnzahl": 123,
"ID_GenauigkeitDatum": 123,
"ID_Habitat": 123,
"ID_Herausgabegenauigkeit": 123,
"ID_Kategorie": 987,
"ID_Material": 987,
"ID_Nachweissicherheit": 123,
"ID_Nachweistyp": 123,
"ID_Qualitaet": 987,
"ID_Quartiertyp": 987,
"ID_Reproduktion": 987,
"ID_Revierstatus": 987,
"ID_Schicht": 987,
"ID_Stadium": 123,
"ID_Substrat": 123,
"ID_Substratzustand": 987,
"ID_Toleranz": 123,
"ID_Traegerbaum": 123,
"ID_Verhalten": 123,
"ID_Verwendung": 987,
"ID_Wuchsstelle": 987,
"Jahr": 987,
"LAEACellCode": 987,
"LAEARaster": "xyz789",
"Len5Finger": 123.45,
"LenDaumen": 123.45,
"LenUnterarm": 987.65,
"MTB": 123,
"MTBQ": 987,
"Masse": 987.65,
"Masse_kg_gesamt": 123.45,
"Merkmal": "abc123",
"Monat": 123,
"MonitoringDatas": [MonitoringData],
"ObservationAdditionalData": ObservationAdditionalData,
"ObservationDetails": [ObservationDetail],
"Ortsbezeichnung": "xyz789",
"Quelle": "abc123",
"Raster": "xyz789",
"RefID": 123,
"ReferenzNr": "abc123",
"Region": "xyz789",
"Ringnummer": "xyz789",
"RingnummerText": "xyz789",
"Ringserie": "abc123",
"Vector_Grad": 123,
"Vector_Meter": 987,
"Zentrale": "abc123",
"sDBHerkunft": "xyz789",
"xWGS84": 123.45,
"yWGS84": 123.45
}
]
}
}
updateReportingPortal
Response
Returns a ReportingPortal!
Example
Query
mutation updateReportingPortal(
$ID_Cloud: Int!,
$id_meldeportal: Int!,
$settings: String!,
$settings_schema_version: String
) {
updateReportingPortal(
ID_Cloud: $ID_Cloud,
id_meldeportal: $id_meldeportal,
settings: $settings,
settings_schema_version: $settings_schema_version
) {
Cloud {
...CloudFragment
}
ID_Cloud
ReportingPortalPages {
...ReportingPortalPageFragment
}
id_meldeportal
settings
settings_schema_version
subdomain
}
}
Variables
{
"ID_Cloud": 987,
"id_meldeportal": 987,
"settings": "abc123",
"settings_schema_version": "xyz789"
}
Response
{
"data": {
"updateReportingPortal": {
"Cloud": Cloud,
"ID_Cloud": 987.65,
"ReportingPortalPages": [ReportingPortalPage],
"id_meldeportal": 123.45,
"settings": "xyz789",
"settings_schema_version": "xyz789",
"subdomain": "xyz789"
}
}
}
updateReportingPortalPage
Response
Returns a ReportingPortalPage!
Arguments
Name | Description |
---|---|
ID_Cloud - Int!
|
Cloud ID |
id_meldeportal_page - Int!
|
Reporting portal page ID |
is_public - Boolean
|
Reporting portal page is publicly visible |
settings - String!
|
Reporting portal page settings (stringified JSON) |
settings_schema_version - String
|
Reporting portal page settings schema version |
Example
Query
mutation updateReportingPortalPage(
$ID_Cloud: Int!,
$id_meldeportal_page: Int!,
$is_public: Boolean,
$settings: String!,
$settings_schema_version: String
) {
updateReportingPortalPage(
ID_Cloud: $ID_Cloud,
id_meldeportal_page: $id_meldeportal_page,
is_public: $is_public,
settings: $settings,
settings_schema_version: $settings_schema_version
) {
ReportingPortal {
...ReportingPortalFragment
}
id_meldeportal
id_meldeportal_page
is_public
report_type
settings
settings_schema_version
url_path
}
}
Variables
{
"ID_Cloud": 123,
"id_meldeportal_page": 987,
"is_public": true,
"settings": "abc123",
"settings_schema_version": "xyz789"
}
Response
{
"data": {
"updateReportingPortalPage": {
"ReportingPortal": ReportingPortal,
"id_meldeportal": 987.65,
"id_meldeportal_page": 987.65,
"is_public": true,
"report_type": "abc123",
"settings": "xyz789",
"settings_schema_version": "xyz789",
"url_path": "xyz789"
}
}
}
Types
Behaviour
Description
Taxa species behaviours
Fields
Field Name | Description |
---|---|
Beschreibung - String
|
Behaviour description |
Categories - [Category!]!
|
|
Arguments
|
|
Flag_1 - Boolean
|
Whether the behaviour can be selected for taxa of category 1 (Amphibians/Reptiles). |
Flag_2 - Boolean
|
Whether the behaviour can be selected for taxa of category 2 (Fish). |
Flag_3 - Boolean
|
Whether the behaviour can be selected for taxa of category 3 (Mammals). |
Flag_4 - Boolean
|
Whether the behaviour can be selected for taxa of category 4 (Birds). |
Flag_5 - Boolean
|
Whether the behaviour can be selected for taxa of category 5 (Invertebrates). |
Flag_6 - Boolean
|
Whether the behaviour can be selected for taxa of category 6 (Plants). |
Flag_7 - Boolean
|
Whether the behaviour can be selected for taxa of category 7 (Funghi). |
Flag_Deleted - Boolean
|
Flag for deprecated behaviours |
Flag_Sync - Boolean
|
Flag to indicate sync status |
Flag_Visible - Boolean
|
Whether the behaviour is visible. |
GUID_Verhalten - String!
|
Behaviour GUID |
ID_Verhalten - Int!
|
Behaviour ID |
ID_Version - Int
|
Current version number |
Kuerzel - String
|
Behaviour abbreviation |
Modul_1 - Boolean
|
|
Modul_2 - Boolean
|
|
Modul_3 - Boolean
|
|
Modul_4 - Boolean
|
|
Modul_5 - Boolean
|
|
Modul_6 - Boolean
|
|
Modul_7 - Boolean
|
|
Modul_8 - Boolean
|
|
Modul_9 - Boolean
|
|
Modul_10 - Boolean
|
|
Modul_11 - Boolean
|
|
Modul_12 - Boolean
|
|
Modul_13 - Boolean
|
|
Modul_14 - Boolean
|
|
Modul_15 - Boolean
|
|
RefID - Int
|
|
Verhalten - String
|
Behaviour name |
Example
{
"Beschreibung": "xyz789",
"Categories": [Category],
"Flag_1": false,
"Flag_2": true,
"Flag_3": true,
"Flag_4": false,
"Flag_5": true,
"Flag_6": true,
"Flag_7": true,
"Flag_Deleted": false,
"Flag_Sync": true,
"Flag_Visible": true,
"GUID_Verhalten": "abc123",
"ID_Verhalten": 123,
"ID_Version": 123,
"Kuerzel": "xyz789",
"Modul_1": false,
"Modul_2": true,
"Modul_3": false,
"Modul_4": true,
"Modul_5": false,
"Modul_6": true,
"Modul_7": true,
"Modul_8": false,
"Modul_9": false,
"Modul_10": false,
"Modul_11": true,
"Modul_12": true,
"Modul_13": true,
"Modul_14": true,
"Modul_15": false,
"RefID": 123,
"Verhalten": "xyz789"
}
BehavioursFilterInput
Fields
Input Field | Description |
---|---|
Beschreibung - StringFilter
|
Filter by Beschreibung (see type "Behaviour") |
Flag_1 - BooleanFilter
|
Filter by Flag_1 (see type "Behaviour") |
Flag_2 - BooleanFilter
|
Filter by Flag_2 (see type "Behaviour") |
Flag_3 - BooleanFilter
|
Filter by Flag_3 (see type "Behaviour") |
Flag_4 - BooleanFilter
|
Filter by Flag_4 (see type "Behaviour") |
Flag_5 - BooleanFilter
|
Filter by Flag_5 (see type "Behaviour") |
Flag_6 - BooleanFilter
|
Filter by Flag_6 (see type "Behaviour") |
Flag_7 - BooleanFilter
|
Filter by Flag_7 (see type "Behaviour") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "Behaviour") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "Behaviour") |
Flag_Visible - BooleanFilter
|
Filter by Flag_Visible (see type "Behaviour") |
GUID_Verhalten - StringFilter
|
Filter by GUID_Verhalten (see type "Behaviour") |
ID_Verhalten - NumberFilter
|
Filter by ID_Verhalten (see type "Behaviour") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "Behaviour") |
Kuerzel - StringFilter
|
Filter by Kuerzel (see type "Behaviour") |
Modul_1 - BooleanFilter
|
Filter by Modul_1 (see type "Behaviour") |
Modul_2 - BooleanFilter
|
Filter by Modul_2 (see type "Behaviour") |
Modul_3 - BooleanFilter
|
Filter by Modul_3 (see type "Behaviour") |
Modul_4 - BooleanFilter
|
Filter by Modul_4 (see type "Behaviour") |
Modul_5 - BooleanFilter
|
Filter by Modul_5 (see type "Behaviour") |
Modul_6 - BooleanFilter
|
Filter by Modul_6 (see type "Behaviour") |
Modul_7 - BooleanFilter
|
Filter by Modul_7 (see type "Behaviour") |
Modul_8 - BooleanFilter
|
Filter by Modul_8 (see type "Behaviour") |
Modul_9 - BooleanFilter
|
Filter by Modul_9 (see type "Behaviour") |
Modul_10 - BooleanFilter
|
Filter by Modul_10 (see type "Behaviour") |
Modul_11 - BooleanFilter
|
Filter by Modul_11 (see type "Behaviour") |
Modul_12 - BooleanFilter
|
Filter by Modul_12 (see type "Behaviour") |
Modul_13 - BooleanFilter
|
Filter by Modul_13 (see type "Behaviour") |
Modul_14 - BooleanFilter
|
Filter by Modul_14 (see type "Behaviour") |
Modul_15 - BooleanFilter
|
Filter by Modul_15 (see type "Behaviour") |
RefID - NumberFilter
|
Filter by RefID (see type "Behaviour") |
Verhalten - StringFilter
|
Filter by Verhalten (see type "Behaviour") |
_and - [BehavioursFilterInput!]
|
Logical AND operator |
_or - [BehavioursFilterInput!]
|
Logical OR operator |
Example
{
"Beschreibung": StringFilter,
"Flag_1": BooleanFilter,
"Flag_2": BooleanFilter,
"Flag_3": BooleanFilter,
"Flag_4": BooleanFilter,
"Flag_5": BooleanFilter,
"Flag_6": BooleanFilter,
"Flag_7": BooleanFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Sync": BooleanFilter,
"Flag_Visible": BooleanFilter,
"GUID_Verhalten": StringFilter,
"ID_Verhalten": NumberFilter,
"ID_Version": NumberFilter,
"Kuerzel": StringFilter,
"Modul_1": BooleanFilter,
"Modul_2": BooleanFilter,
"Modul_3": BooleanFilter,
"Modul_4": BooleanFilter,
"Modul_5": BooleanFilter,
"Modul_6": BooleanFilter,
"Modul_7": BooleanFilter,
"Modul_8": BooleanFilter,
"Modul_9": BooleanFilter,
"Modul_10": BooleanFilter,
"Modul_11": BooleanFilter,
"Modul_12": BooleanFilter,
"Modul_13": BooleanFilter,
"Modul_14": BooleanFilter,
"Modul_15": BooleanFilter,
"RefID": NumberFilter,
"Verhalten": StringFilter,
"_and": [BehavioursFilterInput],
"_or": [BehavioursFilterInput]
}
BehavioursOrderByInput
Fields
Input Field | Description |
---|---|
Beschreibung - SortOrder
|
Sort by Beschreibung (see type "Behaviour") |
Flag_1 - SortOrder
|
Sort by Flag_1 (see type "Behaviour") |
Flag_2 - SortOrder
|
Sort by Flag_2 (see type "Behaviour") |
Flag_3 - SortOrder
|
Sort by Flag_3 (see type "Behaviour") |
Flag_4 - SortOrder
|
Sort by Flag_4 (see type "Behaviour") |
Flag_5 - SortOrder
|
Sort by Flag_5 (see type "Behaviour") |
Flag_6 - SortOrder
|
Sort by Flag_6 (see type "Behaviour") |
Flag_7 - SortOrder
|
Sort by Flag_7 (see type "Behaviour") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "Behaviour") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "Behaviour") |
Flag_Visible - SortOrder
|
Sort by Flag_Visible (see type "Behaviour") |
GUID_Verhalten - SortOrder
|
Sort by GUID_Verhalten (see type "Behaviour") |
ID_Verhalten - SortOrder
|
Sort by ID_Verhalten (see type "Behaviour") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "Behaviour") |
Kuerzel - SortOrder
|
Sort by Kuerzel (see type "Behaviour") |
Modul_1 - SortOrder
|
Sort by Modul_1 (see type "Behaviour") |
Modul_2 - SortOrder
|
Sort by Modul_2 (see type "Behaviour") |
Modul_3 - SortOrder
|
Sort by Modul_3 (see type "Behaviour") |
Modul_4 - SortOrder
|
Sort by Modul_4 (see type "Behaviour") |
Modul_5 - SortOrder
|
Sort by Modul_5 (see type "Behaviour") |
Modul_6 - SortOrder
|
Sort by Modul_6 (see type "Behaviour") |
Modul_7 - SortOrder
|
Sort by Modul_7 (see type "Behaviour") |
Modul_8 - SortOrder
|
Sort by Modul_8 (see type "Behaviour") |
Modul_9 - SortOrder
|
Sort by Modul_9 (see type "Behaviour") |
Modul_10 - SortOrder
|
Sort by Modul_10 (see type "Behaviour") |
Modul_11 - SortOrder
|
Sort by Modul_11 (see type "Behaviour") |
Modul_12 - SortOrder
|
Sort by Modul_12 (see type "Behaviour") |
Modul_13 - SortOrder
|
Sort by Modul_13 (see type "Behaviour") |
Modul_14 - SortOrder
|
Sort by Modul_14 (see type "Behaviour") |
Modul_15 - SortOrder
|
Sort by Modul_15 (see type "Behaviour") |
RefID - SortOrder
|
Sort by RefID (see type "Behaviour") |
Verhalten - SortOrder
|
Sort by Verhalten (see type "Behaviour") |
Example
{
"Beschreibung": "asc",
"Flag_1": "asc",
"Flag_2": "asc",
"Flag_3": "asc",
"Flag_4": "asc",
"Flag_5": "asc",
"Flag_6": "asc",
"Flag_7": "asc",
"Flag_Deleted": "asc",
"Flag_Sync": "asc",
"Flag_Visible": "asc",
"GUID_Verhalten": "asc",
"ID_Verhalten": "asc",
"ID_Version": "asc",
"Kuerzel": "asc",
"Modul_1": "asc",
"Modul_2": "asc",
"Modul_3": "asc",
"Modul_4": "asc",
"Modul_5": "asc",
"Modul_6": "asc",
"Modul_7": "asc",
"Modul_8": "asc",
"Modul_9": "asc",
"Modul_10": "asc",
"Modul_11": "asc",
"Modul_12": "asc",
"Modul_13": "asc",
"Modul_14": "asc",
"Modul_15": "asc",
"RefID": "asc",
"Verhalten": "asc"
}
Boolean
Description
The Boolean
scalar type represents true
or false
.
BooleanFilter
Fields
Input Field | Description |
---|---|
_eq - Boolean
|
Example
{"_eq": true}
CategoriesFilterInput
Fields
Input Field | Description |
---|---|
Beschreibung - StringFilter
|
Filter by Beschreibung (see type "Category") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "Category") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "Category") |
ID_Kategorie - NumberFilter
|
Filter by ID_Kategorie (see type "Category") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "Category") |
Kategorie - StringFilter
|
Filter by Kategorie (see type "Category") |
_and - [CategoriesFilterInput!]
|
Logical AND operator |
_or - [CategoriesFilterInput!]
|
Logical OR operator |
Example
{
"Beschreibung": StringFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Sync": BooleanFilter,
"ID_Kategorie": NumberFilter,
"ID_Version": NumberFilter,
"Kategorie": StringFilter,
"_and": [CategoriesFilterInput],
"_or": [CategoriesFilterInput]
}
CategoriesOrderByInput
Fields
Input Field | Description |
---|---|
Beschreibung - SortOrder
|
Sort by Beschreibung (see type "Category") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "Category") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "Category") |
ID_Kategorie - SortOrder
|
Sort by ID_Kategorie (see type "Category") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "Category") |
Kategorie - SortOrder
|
Sort by Kategorie (see type "Category") |
Example
{
"Beschreibung": "asc",
"Flag_Deleted": "asc",
"Flag_Sync": "asc",
"ID_Kategorie": "asc",
"ID_Version": "asc",
"Kategorie": "asc"
}
Category
Description
Taxa categories
Fields
Field Name | Description |
---|---|
Behaviours - [Behaviour!]!
|
|
Arguments
|
|
Beschreibung - String
|
Description of the category |
Flag_Deleted - Boolean
|
Flag for deprecated categories |
Flag_Sync - Boolean
|
Flag to indicate sync status |
Groups - [Group!]!
|
|
Arguments
|
|
ID_Kategorie - Int!
|
Category ID |
ID_Version - Int
|
Current version number |
IdentificationMethods - [IdentificationMethod!]!
|
|
Arguments
|
|
Kategorie - String
|
German name of the category |
ReproductionTypes - [ReproductionType!]!
|
|
Arguments
|
|
Species - [Species!]
|
|
Units - [Unit!]!
|
|
Arguments
|
Example
{
"Behaviours": [Behaviour],
"Beschreibung": "abc123",
"Flag_Deleted": true,
"Flag_Sync": false,
"Groups": [Group],
"ID_Kategorie": 987,
"ID_Version": 987,
"IdentificationMethods": [IdentificationMethod],
"Kategorie": "abc123",
"ReproductionTypes": [ReproductionType],
"Species": [Species],
"Units": [Unit]
}
Cloud
Description
Cloud entity
Fields
Field Name | Description |
---|---|
Bezeichnung - String
|
Cloud name |
Count_Daten - Float
|
Number of data records |
ID_Cloud - Float!
|
Cloud ID |
MaxCount_Daten - Float
|
Maximum number of data records |
Observations - [Observation!]!
|
|
Arguments
|
|
Observers - [Observer!]!
|
|
Arguments
|
|
ReportingPortals - [ReportingPortal!]!
|
|
Arguments
|
Example
{
"Bezeichnung": "xyz789",
"Count_Daten": 987.65,
"ID_Cloud": 987.65,
"MaxCount_Daten": 123.45,
"Observations": [Observation],
"Observers": [Observer],
"ReportingPortals": [ReportingPortal]
}
CloudFile
Description
File entity
Fields
Field Name | Description |
---|---|
Auftragnehmer - String
|
|
Autor - String
|
File author |
AutorOeffentlich - String
|
|
Bemerkung - String
|
File comment |
Copyright - String
|
File copyright |
Date_Changed - DateTime
|
Date of last change |
Date_Create - DateTime
|
Date of creation |
Date_FileChanged - DateTime
|
Date of last file change |
Date_FileInserted - DateTime
|
Date of file insertion |
Date_Recording - DateTime
|
Date of recording |
Date_Service - DateTime
|
Date of last service |
FileExtension - String
|
File extension |
FileName - String
|
File name |
FileSize - Float
|
File size in bytes |
FileSourcePath - String
|
File source path |
FileURL - String
|
File URL |
Flag_Deleted - Boolean
|
|
GUID_File - String!
|
File GUID |
GUID_Import - String
|
|
GUID_Parent - String!
|
Parent GUID |
ID_Cloud - Float
|
Cloud ID |
ID_File - Float!
|
File ID |
ID_Freigabe - Float
|
|
ID_Motiv - Float
|
|
Motiv - String
|
|
Thumb - String
|
File thumbnail (Base64) Use FileURL with "-x100.jpg" suffix instead |
Titel - String
|
File title |
Example
{
"Auftragnehmer": "abc123",
"Autor": "xyz789",
"AutorOeffentlich": "xyz789",
"Bemerkung": "xyz789",
"Copyright": "xyz789",
"Date_Changed": "2007-12-03T10:15:30Z",
"Date_Create": "2007-12-03T10:15:30Z",
"Date_FileChanged": "2007-12-03T10:15:30Z",
"Date_FileInserted": "2007-12-03T10:15:30Z",
"Date_Recording": "2007-12-03T10:15:30Z",
"Date_Service": "2007-12-03T10:15:30Z",
"FileExtension": "abc123",
"FileName": "xyz789",
"FileSize": 123.45,
"FileSourcePath": "abc123",
"FileURL": "abc123",
"Flag_Deleted": false,
"GUID_File": "xyz789",
"GUID_Import": "xyz789",
"GUID_Parent": "abc123",
"ID_Cloud": 987.65,
"ID_File": 987.65,
"ID_Freigabe": 123.45,
"ID_Motiv": 123.45,
"Motiv": "xyz789",
"Thumb": "xyz789",
"Titel": "xyz789"
}
DateTime
Description
A date-time string at UTC, such as 2019-12-03T09:54:33Z, compliant with the date-time format.
Example
"2007-12-03T10:15:30Z"
FFHHabitatType
Description
Habitat types of the Habitats Directive 92/43/EWG
Fields
Field Name | Description |
---|---|
Bezeichnung - String
|
Description |
CodeFFH - String!
|
Natura 2000 Habitat Code |
FFHHabitatTypeCriteria - [FFHHabitatTypeCriterion!]!
|
|
Arguments
|
|
FFHHabitatTypeSpecies - [FFHHabitatTypeSpecies!]
|
|
Flag_Deleted - Boolean
|
Deleted flag for deprecated habitat types |
ID_LRT - Int!
|
Habitat type |
ID_Version - Float
|
Current version number |
Example
{
"Bezeichnung": "abc123",
"CodeFFH": "abc123",
"FFHHabitatTypeCriteria": [FFHHabitatTypeCriterion],
"FFHHabitatTypeSpecies": [FFHHabitatTypeSpecies],
"Flag_Deleted": false,
"ID_LRT": 123,
"ID_Version": 123.45
}
FFHHabitatTypeCriteriaFilterInput
Fields
Input Field | Description |
---|---|
A - StringFilter
|
Filter by A (see type "FFHHabitatTypeCriterion") |
B - StringFilter
|
Filter by B (see type "FFHHabitatTypeCriterion") |
C - StringFilter
|
Filter by C (see type "FFHHabitatTypeCriterion") |
Einheit - StringFilter
|
Filter by Einheit (see type "FFHHabitatTypeCriterion") |
Flag_20001 - BooleanFilter
|
Filter by Flag_20001 (see type "FFHHabitatTypeCriterion") |
Flag_20002 - BooleanFilter
|
Filter by Flag_20002 (see type "FFHHabitatTypeCriterion") |
Flag_20003 - BooleanFilter
|
Filter by Flag_20003 (see type "FFHHabitatTypeCriterion") |
Flag_20004 - BooleanFilter
|
Filter by Flag_20004 (see type "FFHHabitatTypeCriterion") |
Flag_20005 - BooleanFilter
|
Filter by Flag_20005 (see type "FFHHabitatTypeCriterion") |
Flag_20006 - BooleanFilter
|
Filter by Flag_20006 (see type "FFHHabitatTypeCriterion") |
Flag_20007 - BooleanFilter
|
Filter by Flag_20007 (see type "FFHHabitatTypeCriterion") |
Flag_20008 - BooleanFilter
|
Filter by Flag_20008 (see type "FFHHabitatTypeCriterion") |
Flag_20009 - BooleanFilter
|
Filter by Flag_20009 (see type "FFHHabitatTypeCriterion") |
Flag_20010 - BooleanFilter
|
Filter by Flag_20010 (see type "FFHHabitatTypeCriterion") |
Flag_20011 - BooleanFilter
|
Filter by Flag_20011 (see type "FFHHabitatTypeCriterion") |
Flag_20012 - BooleanFilter
|
Filter by Flag_20012 (see type "FFHHabitatTypeCriterion") |
Flag_20013 - BooleanFilter
|
Filter by Flag_20013 (see type "FFHHabitatTypeCriterion") |
Flag_20014 - BooleanFilter
|
Filter by Flag_20014 (see type "FFHHabitatTypeCriterion") |
Flag_20015 - BooleanFilter
|
Filter by Flag_20015 (see type "FFHHabitatTypeCriterion") |
Flag_20016 - BooleanFilter
|
Filter by Flag_20016 (see type "FFHHabitatTypeCriterion") |
Flag_20017 - BooleanFilter
|
Filter by Flag_20017 (see type "FFHHabitatTypeCriterion") |
Flag_Begruendung - BooleanFilter
|
Filter by Flag_Begruendung (see type "FFHHabitatTypeCriterion") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "FFHHabitatTypeCriterion") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "FFHHabitatTypeCriterion") |
Flag_Visible - BooleanFilter
|
Filter by Flag_Visible (see type "FFHHabitatTypeCriterion") |
Grenze_A - NumberFilter
|
Filter by Grenze_A (see type "FFHHabitatTypeCriterion") |
Grenze_C - NumberFilter
|
Filter by Grenze_C (see type "FFHHabitatTypeCriterion") |
ID_DataType - NumberFilter
|
Filter by ID_DataType (see type "FFHHabitatTypeCriterion") |
ID_KBSLRT - NumberFilter
|
Filter by ID_KBSLRT (see type "FFHHabitatTypeCriterion") |
ID_KBSLRTGruppe - NumberFilter
|
Filter by ID_KBSLRTGruppe (see type "FFHHabitatTypeCriterion") |
ID_KBSLRT_Prev - NumberFilter
|
Filter by ID_KBSLRT_Prev (see type "FFHHabitatTypeCriterion") |
ID_LRT - NumberFilter
|
Filter by ID_LRT (see type "FFHHabitatTypeCriterion") |
ID_LRTArtenliste - NumberFilter
|
Filter by ID_LRTArtenliste (see type "FFHHabitatTypeCriterion") |
ID_Mapping - NumberFilter
|
Filter by ID_Mapping (see type "FFHHabitatTypeCriterion") |
ID_Sort - NumberFilter
|
Filter by ID_Sort (see type "FFHHabitatTypeCriterion") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "FFHHabitatTypeCriterion") |
IDs_Required - StringFilter
|
Filter by IDs_Required (see type "FFHHabitatTypeCriterion") |
JahrBis - NumberFilter
|
Filter by JahrBis (see type "FFHHabitatTypeCriterion") |
JahrVon - NumberFilter
|
Filter by JahrVon (see type "FFHHabitatTypeCriterion") |
Kriterium - StringFilter
|
Filter by Kriterium (see type "FFHHabitatTypeCriterion") |
Kriterium_Info - StringFilter
|
Filter by Kriterium_Info (see type "FFHHabitatTypeCriterion") |
_and - [FFHHabitatTypeCriteriaFilterInput!]
|
Logical AND operator |
_or - [FFHHabitatTypeCriteriaFilterInput!]
|
Logical OR operator |
Example
{
"A": StringFilter,
"B": StringFilter,
"C": StringFilter,
"Einheit": StringFilter,
"Flag_20001": BooleanFilter,
"Flag_20002": BooleanFilter,
"Flag_20003": BooleanFilter,
"Flag_20004": BooleanFilter,
"Flag_20005": BooleanFilter,
"Flag_20006": BooleanFilter,
"Flag_20007": BooleanFilter,
"Flag_20008": BooleanFilter,
"Flag_20009": BooleanFilter,
"Flag_20010": BooleanFilter,
"Flag_20011": BooleanFilter,
"Flag_20012": BooleanFilter,
"Flag_20013": BooleanFilter,
"Flag_20014": BooleanFilter,
"Flag_20015": BooleanFilter,
"Flag_20016": BooleanFilter,
"Flag_20017": BooleanFilter,
"Flag_Begruendung": BooleanFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Sync": BooleanFilter,
"Flag_Visible": BooleanFilter,
"Grenze_A": NumberFilter,
"Grenze_C": NumberFilter,
"ID_DataType": NumberFilter,
"ID_KBSLRT": NumberFilter,
"ID_KBSLRTGruppe": NumberFilter,
"ID_KBSLRT_Prev": NumberFilter,
"ID_LRT": NumberFilter,
"ID_LRTArtenliste": NumberFilter,
"ID_Mapping": NumberFilter,
"ID_Sort": NumberFilter,
"ID_Version": NumberFilter,
"IDs_Required": StringFilter,
"JahrBis": NumberFilter,
"JahrVon": NumberFilter,
"Kriterium": StringFilter,
"Kriterium_Info": StringFilter,
"_and": [FFHHabitatTypeCriteriaFilterInput],
"_or": [FFHHabitatTypeCriteriaFilterInput]
}
FFHHabitatTypeCriteriaOrderByInput
Fields
Input Field | Description |
---|---|
A - SortOrder
|
Sort by A (see type "FFHHabitatTypeCriterion") |
B - SortOrder
|
Sort by B (see type "FFHHabitatTypeCriterion") |
C - SortOrder
|
Sort by C (see type "FFHHabitatTypeCriterion") |
Einheit - SortOrder
|
Sort by Einheit (see type "FFHHabitatTypeCriterion") |
Flag_20001 - SortOrder
|
Sort by Flag_20001 (see type "FFHHabitatTypeCriterion") |
Flag_20002 - SortOrder
|
Sort by Flag_20002 (see type "FFHHabitatTypeCriterion") |
Flag_20003 - SortOrder
|
Sort by Flag_20003 (see type "FFHHabitatTypeCriterion") |
Flag_20004 - SortOrder
|
Sort by Flag_20004 (see type "FFHHabitatTypeCriterion") |
Flag_20005 - SortOrder
|
Sort by Flag_20005 (see type "FFHHabitatTypeCriterion") |
Flag_20006 - SortOrder
|
Sort by Flag_20006 (see type "FFHHabitatTypeCriterion") |
Flag_20007 - SortOrder
|
Sort by Flag_20007 (see type "FFHHabitatTypeCriterion") |
Flag_20008 - SortOrder
|
Sort by Flag_20008 (see type "FFHHabitatTypeCriterion") |
Flag_20009 - SortOrder
|
Sort by Flag_20009 (see type "FFHHabitatTypeCriterion") |
Flag_20010 - SortOrder
|
Sort by Flag_20010 (see type "FFHHabitatTypeCriterion") |
Flag_20011 - SortOrder
|
Sort by Flag_20011 (see type "FFHHabitatTypeCriterion") |
Flag_20012 - SortOrder
|
Sort by Flag_20012 (see type "FFHHabitatTypeCriterion") |
Flag_20013 - SortOrder
|
Sort by Flag_20013 (see type "FFHHabitatTypeCriterion") |
Flag_20014 - SortOrder
|
Sort by Flag_20014 (see type "FFHHabitatTypeCriterion") |
Flag_20015 - SortOrder
|
Sort by Flag_20015 (see type "FFHHabitatTypeCriterion") |
Flag_20016 - SortOrder
|
Sort by Flag_20016 (see type "FFHHabitatTypeCriterion") |
Flag_20017 - SortOrder
|
Sort by Flag_20017 (see type "FFHHabitatTypeCriterion") |
Flag_Begruendung - SortOrder
|
Sort by Flag_Begruendung (see type "FFHHabitatTypeCriterion") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "FFHHabitatTypeCriterion") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "FFHHabitatTypeCriterion") |
Flag_Visible - SortOrder
|
Sort by Flag_Visible (see type "FFHHabitatTypeCriterion") |
Grenze_A - SortOrder
|
Sort by Grenze_A (see type "FFHHabitatTypeCriterion") |
Grenze_C - SortOrder
|
Sort by Grenze_C (see type "FFHHabitatTypeCriterion") |
ID_DataType - SortOrder
|
Sort by ID_DataType (see type "FFHHabitatTypeCriterion") |
ID_KBSLRT - SortOrder
|
Sort by ID_KBSLRT (see type "FFHHabitatTypeCriterion") |
ID_KBSLRTGruppe - SortOrder
|
Sort by ID_KBSLRTGruppe (see type "FFHHabitatTypeCriterion") |
ID_KBSLRT_Prev - SortOrder
|
Sort by ID_KBSLRT_Prev (see type "FFHHabitatTypeCriterion") |
ID_LRT - SortOrder
|
Sort by ID_LRT (see type "FFHHabitatTypeCriterion") |
ID_LRTArtenliste - SortOrder
|
Sort by ID_LRTArtenliste (see type "FFHHabitatTypeCriterion") |
ID_Mapping - SortOrder
|
Sort by ID_Mapping (see type "FFHHabitatTypeCriterion") |
ID_Sort - SortOrder
|
Sort by ID_Sort (see type "FFHHabitatTypeCriterion") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "FFHHabitatTypeCriterion") |
IDs_Required - SortOrder
|
Sort by IDs_Required (see type "FFHHabitatTypeCriterion") |
JahrBis - SortOrder
|
Sort by JahrBis (see type "FFHHabitatTypeCriterion") |
JahrVon - SortOrder
|
Sort by JahrVon (see type "FFHHabitatTypeCriterion") |
Kriterium - SortOrder
|
Sort by Kriterium (see type "FFHHabitatTypeCriterion") |
Kriterium_Info - SortOrder
|
Sort by Kriterium_Info (see type "FFHHabitatTypeCriterion") |
Example
{
"A": "asc",
"B": "asc",
"C": "asc",
"Einheit": "asc",
"Flag_20001": "asc",
"Flag_20002": "asc",
"Flag_20003": "asc",
"Flag_20004": "asc",
"Flag_20005": "asc",
"Flag_20006": "asc",
"Flag_20007": "asc",
"Flag_20008": "asc",
"Flag_20009": "asc",
"Flag_20010": "asc",
"Flag_20011": "asc",
"Flag_20012": "asc",
"Flag_20013": "asc",
"Flag_20014": "asc",
"Flag_20015": "asc",
"Flag_20016": "asc",
"Flag_20017": "asc",
"Flag_Begruendung": "asc",
"Flag_Deleted": "asc",
"Flag_Sync": "asc",
"Flag_Visible": "asc",
"Grenze_A": "asc",
"Grenze_C": "asc",
"ID_DataType": "asc",
"ID_KBSLRT": "asc",
"ID_KBSLRTGruppe": "asc",
"ID_KBSLRT_Prev": "asc",
"ID_LRT": "asc",
"ID_LRTArtenliste": "asc",
"ID_Mapping": "asc",
"ID_Sort": "asc",
"ID_Version": "asc",
"IDs_Required": "asc",
"JahrBis": "asc",
"JahrVon": "asc",
"Kriterium": "asc",
"Kriterium_Info": "asc"
}
FFHHabitatTypeCriterion
Description
Assessment criteria for habitat types of the Habitats Directive 92/43/EWG
Fields
Field Name | Description |
---|---|
A - String
|
Boundary for assessment value A |
B - String
|
Boundary for assessment value B |
C - String
|
Boundary for assessment value C |
Einheit - String
|
Unit of measurement |
FFHHabitatType - FFHHabitatType
|
|
FFHHabitatTypeCriterionSpeciesList - FFHHabitatTypeCriterionSpeciesList
|
|
Flag_20001 - Boolean
|
Whether the criteria is used in Baden-Wuerttemberg |
Flag_20002 - Boolean
|
Whether the criteria is used in Bavaria |
Flag_20003 - Boolean
|
Whether the criteria is used in Brandenburg |
Flag_20004 - Boolean
|
Whether the criteria is used in Bremen |
Flag_20005 - Boolean
|
Whether the criteria is used in Hamburg |
Flag_20006 - Boolean
|
Whether the criteria is used in Hesse |
Flag_20007 - Boolean
|
Whether the criteria is used in Mecklenburg-Western Pomerania |
Flag_20008 - Boolean
|
Whether the criteria is used in Lower Saxony |
Flag_20009 - Boolean
|
Whether the criteria is used in North Rhine-Westphalia |
Flag_20010 - Boolean
|
Whether the criteria is used in Rhineland-Palatinate |
Flag_20011 - Boolean
|
Whether the criteria is used in Saarland |
Flag_20012 - Boolean
|
Whether the criteria is used in Saxony |
Flag_20013 - Boolean
|
Whether the criteria is used in Saxony-Anhalt |
Flag_20014 - Boolean
|
Whether the criteria is used in Schleswig-Holstein |
Flag_20015 - Boolean
|
Whether the criteria is used in Thuringia |
Flag_20016 - Boolean
|
Whether the criteria is used in Germany |
Flag_20017 - Boolean
|
Whether the criteria is used in Berlin |
Flag_Begruendung - Boolean
|
Whether a reason is required for the assessment |
Flag_Deleted - Boolean
|
Deleted flag for deprecated habitat type criteria |
Grenze_A - Float
|
Numerical boundary for assessment value A |
Grenze_C - Float
|
Numerical boundary for assessment value C |
ID_DataType - Float
|
ID of the data type |
ID_KBSLRT - Int!
|
Criterion ID |
ID_KBSLRTGruppe - Float
|
Criterion group ID |
ID_KBSLRT_Prev - Float
|
ID of the previous criterion |
ID_LRT - Int!
|
Habitat type ID |
ID_LRTArtenliste - Float
|
ID of the list of species needed for the criteria assessment |
ID_Mapping - Float
|
ID of the mapping |
ID_Sort - Float
|
Sort order |
ID_Version - Float
|
Current version number |
IDs_Required - String
|
Mandatory criteria IDs (string representation of array) |
JahrBis - Float
|
Valid until year |
JahrVon - Float
|
Valid from year |
Kriterium - String
|
Criterion name |
Kriterium_Info - String
|
Criterion assessment info |
Example
{
"A": "abc123",
"B": "abc123",
"C": "xyz789",
"Einheit": "abc123",
"FFHHabitatType": FFHHabitatType,
"FFHHabitatTypeCriterionSpeciesList": FFHHabitatTypeCriterionSpeciesList,
"Flag_20001": false,
"Flag_20002": true,
"Flag_20003": false,
"Flag_20004": false,
"Flag_20005": false,
"Flag_20006": false,
"Flag_20007": true,
"Flag_20008": false,
"Flag_20009": true,
"Flag_20010": true,
"Flag_20011": true,
"Flag_20012": true,
"Flag_20013": false,
"Flag_20014": false,
"Flag_20015": false,
"Flag_20016": true,
"Flag_20017": true,
"Flag_Begruendung": false,
"Flag_Deleted": true,
"Grenze_A": 987.65,
"Grenze_C": 987.65,
"ID_DataType": 123.45,
"ID_KBSLRT": 123,
"ID_KBSLRTGruppe": 123.45,
"ID_KBSLRT_Prev": 987.65,
"ID_LRT": 987,
"ID_LRTArtenliste": 123.45,
"ID_Mapping": 987.65,
"ID_Sort": 123.45,
"ID_Version": 123.45,
"IDs_Required": "xyz789",
"JahrBis": 987.65,
"JahrVon": 987.65,
"Kriterium": "abc123",
"Kriterium_Info": "abc123"
}
FFHHabitatTypeCriterionSpeciesList
Description
Assessment criteria species lists for habitat types of the Habitats Directive 92/43/EWG
Fields
Field Name | Description |
---|---|
Beschreibung - String
|
|
Bezeichnung - String
|
|
FFHHabitatTypeCriteria - [FFHHabitatTypeCriterion!]
|
|
FFHHabitatTypeSpecies - [FFHHabitatTypeSpecies!]!
|
|
Arguments
|
|
Flag_Deleted - Boolean
|
|
Flag_Sync - Boolean
|
|
Flag_Visible - Boolean
|
|
ID_LRTArtenliste - ID!
|
|
ID_Version - Int
|
|
QueryAdditional_ID_LRT - String
|
|
QueryArten - String
|
|
QueryLRTArten - String
|
Example
{
"Beschreibung": "abc123",
"Bezeichnung": "xyz789",
"FFHHabitatTypeCriteria": [FFHHabitatTypeCriterion],
"FFHHabitatTypeSpecies": [FFHHabitatTypeSpecies],
"Flag_Deleted": true,
"Flag_Sync": false,
"Flag_Visible": true,
"ID_LRTArtenliste": 4,
"ID_Version": 123,
"QueryAdditional_ID_LRT": "xyz789",
"QueryArten": "xyz789",
"QueryLRTArten": "xyz789"
}
FFHHabitatTypeCriterionSpeciesListsFilterInput
Fields
Input Field | Description |
---|---|
Beschreibung - StringFilter
|
Filter by Beschreibung (see type "FFHHabitatTypeCriterionSpeciesList") |
Bezeichnung - StringFilter
|
Filter by Bezeichnung (see type "FFHHabitatTypeCriterionSpeciesList") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "FFHHabitatTypeCriterionSpeciesList") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "FFHHabitatTypeCriterionSpeciesList") |
Flag_Visible - BooleanFilter
|
Filter by Flag_Visible (see type "FFHHabitatTypeCriterionSpeciesList") |
ID_LRTArtenliste - NumberFilter
|
Filter by ID_LRTArtenliste (see type "FFHHabitatTypeCriterionSpeciesList") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "FFHHabitatTypeCriterionSpeciesList") |
QueryAdditional_ID_LRT - StringFilter
|
Filter by QueryAdditional_ID_LRT (see type "FFHHabitatTypeCriterionSpeciesList") |
QueryArten - StringFilter
|
Filter by QueryArten (see type "FFHHabitatTypeCriterionSpeciesList") |
QueryLRTArten - StringFilter
|
Filter by QueryLRTArten (see type "FFHHabitatTypeCriterionSpeciesList") |
_and - [FFHHabitatTypeCriterionSpeciesListsFilterInput!]
|
Logical AND operator |
_or - [FFHHabitatTypeCriterionSpeciesListsFilterInput!]
|
Logical OR operator |
Example
{
"Beschreibung": StringFilter,
"Bezeichnung": StringFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Sync": BooleanFilter,
"Flag_Visible": BooleanFilter,
"ID_LRTArtenliste": NumberFilter,
"ID_Version": NumberFilter,
"QueryAdditional_ID_LRT": StringFilter,
"QueryArten": StringFilter,
"QueryLRTArten": StringFilter,
"_and": [
FFHHabitatTypeCriterionSpeciesListsFilterInput
],
"_or": [FFHHabitatTypeCriterionSpeciesListsFilterInput]
}
FFHHabitatTypeCriterionSpeciesListsOrderByInput
Fields
Input Field | Description |
---|---|
Beschreibung - SortOrder
|
Sort by Beschreibung (see type "FFHHabitatTypeCriterionSpeciesList") |
Bezeichnung - SortOrder
|
Sort by Bezeichnung (see type "FFHHabitatTypeCriterionSpeciesList") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "FFHHabitatTypeCriterionSpeciesList") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "FFHHabitatTypeCriterionSpeciesList") |
Flag_Visible - SortOrder
|
Sort by Flag_Visible (see type "FFHHabitatTypeCriterionSpeciesList") |
ID_LRTArtenliste - SortOrder
|
Sort by ID_LRTArtenliste (see type "FFHHabitatTypeCriterionSpeciesList") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "FFHHabitatTypeCriterionSpeciesList") |
QueryAdditional_ID_LRT - SortOrder
|
Sort by QueryAdditional_ID_LRT (see type "FFHHabitatTypeCriterionSpeciesList") |
QueryArten - SortOrder
|
Sort by QueryArten (see type "FFHHabitatTypeCriterionSpeciesList") |
QueryLRTArten - SortOrder
|
Sort by QueryLRTArten (see type "FFHHabitatTypeCriterionSpeciesList") |
Example
{
"Beschreibung": "asc",
"Bezeichnung": "asc",
"Flag_Deleted": "asc",
"Flag_Sync": "asc",
"Flag_Visible": "asc",
"ID_LRTArtenliste": "asc",
"ID_Version": "asc",
"QueryAdditional_ID_LRT": "asc",
"QueryArten": "asc",
"QueryLRTArten": "asc"
}
FFHHabitatTypeSpecies
Description
Species for habitat types of the Habitats Directive 92/43/EWG
Fields
Field Name | Description |
---|---|
Anzeigename - String
|
|
FFHHabitatType - FFHHabitatType
|
|
Flag_20001 - Boolean
|
|
Flag_20002 - Boolean
|
|
Flag_20003 - Boolean
|
|
Flag_20004 - Boolean
|
|
Flag_20005 - Boolean
|
|
Flag_20006 - Boolean
|
|
Flag_20007 - Boolean
|
|
Flag_20008 - Boolean
|
|
Flag_20009 - Boolean
|
|
Flag_20010 - Boolean
|
|
Flag_20011 - Boolean
|
|
Flag_20012 - Boolean
|
|
Flag_20013 - Boolean
|
|
Flag_20014 - Boolean
|
|
Flag_20015 - Boolean
|
|
Flag_20016 - Boolean
|
|
Flag_20017 - Boolean
|
|
Flag_Characeen - Boolean
|
|
Flag_Deleted - Boolean
|
|
Flag_Invasive_Wald - Boolean
|
|
Flag_Kennzeichen - Boolean
|
|
Flag_Neophyt - Boolean
|
|
Flag_Sync - Boolean
|
|
Flag_Visible - Boolean
|
|
ID_Art - Int!
|
|
ID_BioGeoReg - Int
|
ID of the bio-geographical region (1 = Atlantic, 2 = Continental, 3 = Alpine) |
ID_LRT - Int!
|
|
ID_LRTArt - ID!
|
|
ID_Lebensform - Int
|
|
ID_Listentyp - Int!
|
|
ID_Meer - Int
|
ID of the sea (1 = North Sea, 2 = Baltic Sea, 3 = Both) |
ID_Version - Int
|
|
JahrBis - Int
|
|
JahrVon - Int
|
|
Species - Species!
|
Example
{
"Anzeigename": "xyz789",
"FFHHabitatType": FFHHabitatType,
"Flag_20001": true,
"Flag_20002": true,
"Flag_20003": true,
"Flag_20004": true,
"Flag_20005": false,
"Flag_20006": false,
"Flag_20007": true,
"Flag_20008": false,
"Flag_20009": true,
"Flag_20010": true,
"Flag_20011": true,
"Flag_20012": true,
"Flag_20013": false,
"Flag_20014": false,
"Flag_20015": true,
"Flag_20016": true,
"Flag_20017": false,
"Flag_Characeen": false,
"Flag_Deleted": true,
"Flag_Invasive_Wald": false,
"Flag_Kennzeichen": false,
"Flag_Neophyt": true,
"Flag_Sync": true,
"Flag_Visible": false,
"ID_Art": 123,
"ID_BioGeoReg": 123,
"ID_LRT": 123,
"ID_LRTArt": "4",
"ID_Lebensform": 987,
"ID_Listentyp": 123,
"ID_Meer": 987,
"ID_Version": 987,
"JahrBis": 123,
"JahrVon": 987,
"Species": Species
}
FFHHabitatTypeSpeciesFilterInput
Fields
Input Field | Description |
---|---|
Anzeigename - StringFilter
|
Filter by Anzeigename (see type "FFHHabitatTypeSpecies") |
Flag_20001 - BooleanFilter
|
Filter by Flag_20001 (see type "FFHHabitatTypeSpecies") |
Flag_20002 - BooleanFilter
|
Filter by Flag_20002 (see type "FFHHabitatTypeSpecies") |
Flag_20003 - BooleanFilter
|
Filter by Flag_20003 (see type "FFHHabitatTypeSpecies") |
Flag_20004 - BooleanFilter
|
Filter by Flag_20004 (see type "FFHHabitatTypeSpecies") |
Flag_20005 - BooleanFilter
|
Filter by Flag_20005 (see type "FFHHabitatTypeSpecies") |
Flag_20006 - BooleanFilter
|
Filter by Flag_20006 (see type "FFHHabitatTypeSpecies") |
Flag_20007 - BooleanFilter
|
Filter by Flag_20007 (see type "FFHHabitatTypeSpecies") |
Flag_20008 - BooleanFilter
|
Filter by Flag_20008 (see type "FFHHabitatTypeSpecies") |
Flag_20009 - BooleanFilter
|
Filter by Flag_20009 (see type "FFHHabitatTypeSpecies") |
Flag_20010 - BooleanFilter
|
Filter by Flag_20010 (see type "FFHHabitatTypeSpecies") |
Flag_20011 - BooleanFilter
|
Filter by Flag_20011 (see type "FFHHabitatTypeSpecies") |
Flag_20012 - BooleanFilter
|
Filter by Flag_20012 (see type "FFHHabitatTypeSpecies") |
Flag_20013 - BooleanFilter
|
Filter by Flag_20013 (see type "FFHHabitatTypeSpecies") |
Flag_20014 - BooleanFilter
|
Filter by Flag_20014 (see type "FFHHabitatTypeSpecies") |
Flag_20015 - BooleanFilter
|
Filter by Flag_20015 (see type "FFHHabitatTypeSpecies") |
Flag_20016 - BooleanFilter
|
Filter by Flag_20016 (see type "FFHHabitatTypeSpecies") |
Flag_20017 - BooleanFilter
|
Filter by Flag_20017 (see type "FFHHabitatTypeSpecies") |
Flag_Characeen - BooleanFilter
|
Filter by Flag_Characeen (see type "FFHHabitatTypeSpecies") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "FFHHabitatTypeSpecies") |
Flag_Invasive_Wald - BooleanFilter
|
Filter by Flag_Invasive_Wald (see type "FFHHabitatTypeSpecies") |
Flag_Kennzeichen - BooleanFilter
|
Filter by Flag_Kennzeichen (see type "FFHHabitatTypeSpecies") |
Flag_Neophyt - BooleanFilter
|
Filter by Flag_Neophyt (see type "FFHHabitatTypeSpecies") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "FFHHabitatTypeSpecies") |
Flag_Visible - BooleanFilter
|
Filter by Flag_Visible (see type "FFHHabitatTypeSpecies") |
ID_Art - NumberFilter
|
Filter by ID_Art (see type "FFHHabitatTypeSpecies") |
ID_BioGeoReg - NumberFilter
|
Filter by ID_BioGeoReg (see type "FFHHabitatTypeSpecies") |
ID_LRT - NumberFilter
|
Filter by ID_LRT (see type "FFHHabitatTypeSpecies") |
ID_LRTArt - NumberFilter
|
Filter by ID_LRTArt (see type "FFHHabitatTypeSpecies") |
ID_Lebensform - NumberFilter
|
Filter by ID_Lebensform (see type "FFHHabitatTypeSpecies") |
ID_Listentyp - NumberFilter
|
Filter by ID_Listentyp (see type "FFHHabitatTypeSpecies") |
ID_Meer - NumberFilter
|
Filter by ID_Meer (see type "FFHHabitatTypeSpecies") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "FFHHabitatTypeSpecies") |
JahrBis - NumberFilter
|
Filter by JahrBis (see type "FFHHabitatTypeSpecies") |
JahrVon - NumberFilter
|
Filter by JahrVon (see type "FFHHabitatTypeSpecies") |
_and - [FFHHabitatTypeSpeciesFilterInput!]
|
Logical AND operator |
_or - [FFHHabitatTypeSpeciesFilterInput!]
|
Logical OR operator |
Example
{
"Anzeigename": StringFilter,
"Flag_20001": BooleanFilter,
"Flag_20002": BooleanFilter,
"Flag_20003": BooleanFilter,
"Flag_20004": BooleanFilter,
"Flag_20005": BooleanFilter,
"Flag_20006": BooleanFilter,
"Flag_20007": BooleanFilter,
"Flag_20008": BooleanFilter,
"Flag_20009": BooleanFilter,
"Flag_20010": BooleanFilter,
"Flag_20011": BooleanFilter,
"Flag_20012": BooleanFilter,
"Flag_20013": BooleanFilter,
"Flag_20014": BooleanFilter,
"Flag_20015": BooleanFilter,
"Flag_20016": BooleanFilter,
"Flag_20017": BooleanFilter,
"Flag_Characeen": BooleanFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Invasive_Wald": BooleanFilter,
"Flag_Kennzeichen": BooleanFilter,
"Flag_Neophyt": BooleanFilter,
"Flag_Sync": BooleanFilter,
"Flag_Visible": BooleanFilter,
"ID_Art": NumberFilter,
"ID_BioGeoReg": NumberFilter,
"ID_LRT": NumberFilter,
"ID_LRTArt": NumberFilter,
"ID_Lebensform": NumberFilter,
"ID_Listentyp": NumberFilter,
"ID_Meer": NumberFilter,
"ID_Version": NumberFilter,
"JahrBis": NumberFilter,
"JahrVon": NumberFilter,
"_and": [FFHHabitatTypeSpeciesFilterInput],
"_or": [FFHHabitatTypeSpeciesFilterInput]
}
FFHHabitatTypeSpeciesOrderByInput
Fields
Input Field | Description |
---|---|
Anzeigename - SortOrder
|
Sort by Anzeigename (see type "FFHHabitatTypeSpecies") |
Flag_20001 - SortOrder
|
Sort by Flag_20001 (see type "FFHHabitatTypeSpecies") |
Flag_20002 - SortOrder
|
Sort by Flag_20002 (see type "FFHHabitatTypeSpecies") |
Flag_20003 - SortOrder
|
Sort by Flag_20003 (see type "FFHHabitatTypeSpecies") |
Flag_20004 - SortOrder
|
Sort by Flag_20004 (see type "FFHHabitatTypeSpecies") |
Flag_20005 - SortOrder
|
Sort by Flag_20005 (see type "FFHHabitatTypeSpecies") |
Flag_20006 - SortOrder
|
Sort by Flag_20006 (see type "FFHHabitatTypeSpecies") |
Flag_20007 - SortOrder
|
Sort by Flag_20007 (see type "FFHHabitatTypeSpecies") |
Flag_20008 - SortOrder
|
Sort by Flag_20008 (see type "FFHHabitatTypeSpecies") |
Flag_20009 - SortOrder
|
Sort by Flag_20009 (see type "FFHHabitatTypeSpecies") |
Flag_20010 - SortOrder
|
Sort by Flag_20010 (see type "FFHHabitatTypeSpecies") |
Flag_20011 - SortOrder
|
Sort by Flag_20011 (see type "FFHHabitatTypeSpecies") |
Flag_20012 - SortOrder
|
Sort by Flag_20012 (see type "FFHHabitatTypeSpecies") |
Flag_20013 - SortOrder
|
Sort by Flag_20013 (see type "FFHHabitatTypeSpecies") |
Flag_20014 - SortOrder
|
Sort by Flag_20014 (see type "FFHHabitatTypeSpecies") |
Flag_20015 - SortOrder
|
Sort by Flag_20015 (see type "FFHHabitatTypeSpecies") |
Flag_20016 - SortOrder
|
Sort by Flag_20016 (see type "FFHHabitatTypeSpecies") |
Flag_20017 - SortOrder
|
Sort by Flag_20017 (see type "FFHHabitatTypeSpecies") |
Flag_Characeen - SortOrder
|
Sort by Flag_Characeen (see type "FFHHabitatTypeSpecies") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "FFHHabitatTypeSpecies") |
Flag_Invasive_Wald - SortOrder
|
Sort by Flag_Invasive_Wald (see type "FFHHabitatTypeSpecies") |
Flag_Kennzeichen - SortOrder
|
Sort by Flag_Kennzeichen (see type "FFHHabitatTypeSpecies") |
Flag_Neophyt - SortOrder
|
Sort by Flag_Neophyt (see type "FFHHabitatTypeSpecies") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "FFHHabitatTypeSpecies") |
Flag_Visible - SortOrder
|
Sort by Flag_Visible (see type "FFHHabitatTypeSpecies") |
ID_Art - SortOrder
|
Sort by ID_Art (see type "FFHHabitatTypeSpecies") |
ID_BioGeoReg - SortOrder
|
Sort by ID_BioGeoReg (see type "FFHHabitatTypeSpecies") |
ID_LRT - SortOrder
|
Sort by ID_LRT (see type "FFHHabitatTypeSpecies") |
ID_LRTArt - SortOrder
|
Sort by ID_LRTArt (see type "FFHHabitatTypeSpecies") |
ID_Lebensform - SortOrder
|
Sort by ID_Lebensform (see type "FFHHabitatTypeSpecies") |
ID_Listentyp - SortOrder
|
Sort by ID_Listentyp (see type "FFHHabitatTypeSpecies") |
ID_Meer - SortOrder
|
Sort by ID_Meer (see type "FFHHabitatTypeSpecies") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "FFHHabitatTypeSpecies") |
JahrBis - SortOrder
|
Sort by JahrBis (see type "FFHHabitatTypeSpecies") |
JahrVon - SortOrder
|
Sort by JahrVon (see type "FFHHabitatTypeSpecies") |
Example
{
"Anzeigename": "asc",
"Flag_20001": "asc",
"Flag_20002": "asc",
"Flag_20003": "asc",
"Flag_20004": "asc",
"Flag_20005": "asc",
"Flag_20006": "asc",
"Flag_20007": "asc",
"Flag_20008": "asc",
"Flag_20009": "asc",
"Flag_20010": "asc",
"Flag_20011": "asc",
"Flag_20012": "asc",
"Flag_20013": "asc",
"Flag_20014": "asc",
"Flag_20015": "asc",
"Flag_20016": "asc",
"Flag_20017": "asc",
"Flag_Characeen": "asc",
"Flag_Deleted": "asc",
"Flag_Invasive_Wald": "asc",
"Flag_Kennzeichen": "asc",
"Flag_Neophyt": "asc",
"Flag_Sync": "asc",
"Flag_Visible": "asc",
"ID_Art": "asc",
"ID_BioGeoReg": "asc",
"ID_LRT": "asc",
"ID_LRTArt": "asc",
"ID_Lebensform": "asc",
"ID_Listentyp": "asc",
"ID_Meer": "asc",
"ID_Version": "asc",
"JahrBis": "asc",
"JahrVon": "asc"
}
FFHHabitatTypesFilterInput
Fields
Input Field | Description |
---|---|
Bezeichnung - StringFilter
|
Filter by Bezeichnung (see type "FFHHabitatType") |
CodeFFH - StringFilter
|
Filter by CodeFFH (see type "FFHHabitatType") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "FFHHabitatType") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "FFHHabitatType") |
Flag_Visible - BooleanFilter
|
Filter by Flag_Visible (see type "FFHHabitatType") |
ID_LRT - NumberFilter
|
Filter by ID_LRT (see type "FFHHabitatType") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "FFHHabitatType") |
_and - [FFHHabitatTypesFilterInput!]
|
Logical AND operator |
_or - [FFHHabitatTypesFilterInput!]
|
Logical OR operator |
Example
{
"Bezeichnung": StringFilter,
"CodeFFH": StringFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Sync": BooleanFilter,
"Flag_Visible": BooleanFilter,
"ID_LRT": NumberFilter,
"ID_Version": NumberFilter,
"_and": [FFHHabitatTypesFilterInput],
"_or": [FFHHabitatTypesFilterInput]
}
FFHHabitatTypesOrderByInput
Fields
Input Field | Description |
---|---|
Bezeichnung - SortOrder
|
Sort by Bezeichnung (see type "FFHHabitatType") |
CodeFFH - SortOrder
|
Sort by CodeFFH (see type "FFHHabitatType") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "FFHHabitatType") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "FFHHabitatType") |
Flag_Visible - SortOrder
|
Sort by Flag_Visible (see type "FFHHabitatType") |
ID_LRT - SortOrder
|
Sort by ID_LRT (see type "FFHHabitatType") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "FFHHabitatType") |
Example
{
"Bezeichnung": "asc",
"CodeFFH": "asc",
"Flag_Deleted": "asc",
"Flag_Sync": "asc",
"Flag_Visible": "asc",
"ID_LRT": "asc",
"ID_Version": "asc"
}
FFHSpeciesCriteriaFilterInput
Fields
Input Field | Description |
---|---|
A - StringFilter
|
Filter by A (see type "FFHSpeciesCriterion") |
B - StringFilter
|
Filter by B (see type "FFHSpeciesCriterion") |
C - StringFilter
|
Filter by C (see type "FFHSpeciesCriterion") |
Einheit - StringFilter
|
Filter by Einheit (see type "FFHSpeciesCriterion") |
Flag_20001 - BooleanFilter
|
Filter by Flag_20001 (see type "FFHSpeciesCriterion") |
Flag_20002 - BooleanFilter
|
Filter by Flag_20002 (see type "FFHSpeciesCriterion") |
Flag_20003 - BooleanFilter
|
Filter by Flag_20003 (see type "FFHSpeciesCriterion") |
Flag_20004 - BooleanFilter
|
Filter by Flag_20004 (see type "FFHSpeciesCriterion") |
Flag_20005 - BooleanFilter
|
Filter by Flag_20005 (see type "FFHSpeciesCriterion") |
Flag_20006 - BooleanFilter
|
Filter by Flag_20006 (see type "FFHSpeciesCriterion") |
Flag_20007 - BooleanFilter
|
Filter by Flag_20007 (see type "FFHSpeciesCriterion") |
Flag_20008 - BooleanFilter
|
Filter by Flag_20008 (see type "FFHSpeciesCriterion") |
Flag_20009 - BooleanFilter
|
Filter by Flag_20009 (see type "FFHSpeciesCriterion") |
Flag_20010 - BooleanFilter
|
Filter by Flag_20010 (see type "FFHSpeciesCriterion") |
Flag_20011 - BooleanFilter
|
Filter by Flag_20011 (see type "FFHSpeciesCriterion") |
Flag_20012 - BooleanFilter
|
Filter by Flag_20012 (see type "FFHSpeciesCriterion") |
Flag_20013 - BooleanFilter
|
Filter by Flag_20013 (see type "FFHSpeciesCriterion") |
Flag_20014 - BooleanFilter
|
Filter by Flag_20014 (see type "FFHSpeciesCriterion") |
Flag_20015 - BooleanFilter
|
Filter by Flag_20015 (see type "FFHSpeciesCriterion") |
Flag_20016 - BooleanFilter
|
Filter by Flag_20016 (see type "FFHSpeciesCriterion") |
Flag_20017 - BooleanFilter
|
Filter by Flag_20017 (see type "FFHSpeciesCriterion") |
Flag_Begruendung - BooleanFilter
|
Filter by Flag_Begruendung (see type "FFHSpeciesCriterion") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "FFHSpeciesCriterion") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "FFHSpeciesCriterion") |
Flag_Visible - BooleanFilter
|
Filter by Flag_Visible (see type "FFHSpeciesCriterion") |
Grenze_A - NumberFilter
|
Filter by Grenze_A (see type "FFHSpeciesCriterion") |
Grenze_C - NumberFilter
|
Filter by Grenze_C (see type "FFHSpeciesCriterion") |
ID_Art - NumberFilter
|
Filter by ID_Art (see type "FFHSpeciesCriterion") |
ID_DataType - NumberFilter
|
Filter by ID_DataType (see type "FFHSpeciesCriterion") |
ID_KBS - NumberFilter
|
Filter by ID_KBS (see type "FFHSpeciesCriterion") |
ID_KBSGruppe - NumberFilter
|
Filter by ID_KBSGruppe (see type "FFHSpeciesCriterion") |
ID_KBS_Prev - NumberFilter
|
Filter by ID_KBS_Prev (see type "FFHSpeciesCriterion") |
ID_Mapping - NumberFilter
|
Filter by ID_Mapping (see type "FFHSpeciesCriterion") |
ID_Sort - NumberFilter
|
Filter by ID_Sort (see type "FFHSpeciesCriterion") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "FFHSpeciesCriterion") |
ID_Wichtung - NumberFilter
|
Filter by ID_Wichtung (see type "FFHSpeciesCriterion") |
IDs_Required - StringFilter
|
Filter by IDs_Required (see type "FFHSpeciesCriterion") |
JahrBis - NumberFilter
|
Filter by JahrBis (see type "FFHSpeciesCriterion") |
JahrVon - NumberFilter
|
Filter by JahrVon (see type "FFHSpeciesCriterion") |
Kriterium - StringFilter
|
Filter by Kriterium (see type "FFHSpeciesCriterion") |
Kriterium_Info - StringFilter
|
Filter by Kriterium_Info (see type "FFHSpeciesCriterion") |
_and - [FFHSpeciesCriteriaFilterInput!]
|
Logical AND operator |
_or - [FFHSpeciesCriteriaFilterInput!]
|
Logical OR operator |
Example
{
"A": StringFilter,
"B": StringFilter,
"C": StringFilter,
"Einheit": StringFilter,
"Flag_20001": BooleanFilter,
"Flag_20002": BooleanFilter,
"Flag_20003": BooleanFilter,
"Flag_20004": BooleanFilter,
"Flag_20005": BooleanFilter,
"Flag_20006": BooleanFilter,
"Flag_20007": BooleanFilter,
"Flag_20008": BooleanFilter,
"Flag_20009": BooleanFilter,
"Flag_20010": BooleanFilter,
"Flag_20011": BooleanFilter,
"Flag_20012": BooleanFilter,
"Flag_20013": BooleanFilter,
"Flag_20014": BooleanFilter,
"Flag_20015": BooleanFilter,
"Flag_20016": BooleanFilter,
"Flag_20017": BooleanFilter,
"Flag_Begruendung": BooleanFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Sync": BooleanFilter,
"Flag_Visible": BooleanFilter,
"Grenze_A": NumberFilter,
"Grenze_C": NumberFilter,
"ID_Art": NumberFilter,
"ID_DataType": NumberFilter,
"ID_KBS": NumberFilter,
"ID_KBSGruppe": NumberFilter,
"ID_KBS_Prev": NumberFilter,
"ID_Mapping": NumberFilter,
"ID_Sort": NumberFilter,
"ID_Version": NumberFilter,
"ID_Wichtung": NumberFilter,
"IDs_Required": StringFilter,
"JahrBis": NumberFilter,
"JahrVon": NumberFilter,
"Kriterium": StringFilter,
"Kriterium_Info": StringFilter,
"_and": [FFHSpeciesCriteriaFilterInput],
"_or": [FFHSpeciesCriteriaFilterInput]
}
FFHSpeciesCriteriaOrderByInput
Fields
Input Field | Description |
---|---|
A - SortOrder
|
Sort by A (see type "FFHSpeciesCriterion") |
B - SortOrder
|
Sort by B (see type "FFHSpeciesCriterion") |
C - SortOrder
|
Sort by C (see type "FFHSpeciesCriterion") |
Einheit - SortOrder
|
Sort by Einheit (see type "FFHSpeciesCriterion") |
Flag_20001 - SortOrder
|
Sort by Flag_20001 (see type "FFHSpeciesCriterion") |
Flag_20002 - SortOrder
|
Sort by Flag_20002 (see type "FFHSpeciesCriterion") |
Flag_20003 - SortOrder
|
Sort by Flag_20003 (see type "FFHSpeciesCriterion") |
Flag_20004 - SortOrder
|
Sort by Flag_20004 (see type "FFHSpeciesCriterion") |
Flag_20005 - SortOrder
|
Sort by Flag_20005 (see type "FFHSpeciesCriterion") |
Flag_20006 - SortOrder
|
Sort by Flag_20006 (see type "FFHSpeciesCriterion") |
Flag_20007 - SortOrder
|
Sort by Flag_20007 (see type "FFHSpeciesCriterion") |
Flag_20008 - SortOrder
|
Sort by Flag_20008 (see type "FFHSpeciesCriterion") |
Flag_20009 - SortOrder
|
Sort by Flag_20009 (see type "FFHSpeciesCriterion") |
Flag_20010 - SortOrder
|
Sort by Flag_20010 (see type "FFHSpeciesCriterion") |
Flag_20011 - SortOrder
|
Sort by Flag_20011 (see type "FFHSpeciesCriterion") |
Flag_20012 - SortOrder
|
Sort by Flag_20012 (see type "FFHSpeciesCriterion") |
Flag_20013 - SortOrder
|
Sort by Flag_20013 (see type "FFHSpeciesCriterion") |
Flag_20014 - SortOrder
|
Sort by Flag_20014 (see type "FFHSpeciesCriterion") |
Flag_20015 - SortOrder
|
Sort by Flag_20015 (see type "FFHSpeciesCriterion") |
Flag_20016 - SortOrder
|
Sort by Flag_20016 (see type "FFHSpeciesCriterion") |
Flag_20017 - SortOrder
|
Sort by Flag_20017 (see type "FFHSpeciesCriterion") |
Flag_Begruendung - SortOrder
|
Sort by Flag_Begruendung (see type "FFHSpeciesCriterion") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "FFHSpeciesCriterion") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "FFHSpeciesCriterion") |
Flag_Visible - SortOrder
|
Sort by Flag_Visible (see type "FFHSpeciesCriterion") |
Grenze_A - SortOrder
|
Sort by Grenze_A (see type "FFHSpeciesCriterion") |
Grenze_C - SortOrder
|
Sort by Grenze_C (see type "FFHSpeciesCriterion") |
ID_Art - SortOrder
|
Sort by ID_Art (see type "FFHSpeciesCriterion") |
ID_DataType - SortOrder
|
Sort by ID_DataType (see type "FFHSpeciesCriterion") |
ID_KBS - SortOrder
|
Sort by ID_KBS (see type "FFHSpeciesCriterion") |
ID_KBSGruppe - SortOrder
|
Sort by ID_KBSGruppe (see type "FFHSpeciesCriterion") |
ID_KBS_Prev - SortOrder
|
Sort by ID_KBS_Prev (see type "FFHSpeciesCriterion") |
ID_Mapping - SortOrder
|
Sort by ID_Mapping (see type "FFHSpeciesCriterion") |
ID_Sort - SortOrder
|
Sort by ID_Sort (see type "FFHSpeciesCriterion") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "FFHSpeciesCriterion") |
ID_Wichtung - SortOrder
|
Sort by ID_Wichtung (see type "FFHSpeciesCriterion") |
IDs_Required - SortOrder
|
Sort by IDs_Required (see type "FFHSpeciesCriterion") |
JahrBis - SortOrder
|
Sort by JahrBis (see type "FFHSpeciesCriterion") |
JahrVon - SortOrder
|
Sort by JahrVon (see type "FFHSpeciesCriterion") |
Kriterium - SortOrder
|
Sort by Kriterium (see type "FFHSpeciesCriterion") |
Kriterium_Info - SortOrder
|
Sort by Kriterium_Info (see type "FFHSpeciesCriterion") |
Example
{
"A": "asc",
"B": "asc",
"C": "asc",
"Einheit": "asc",
"Flag_20001": "asc",
"Flag_20002": "asc",
"Flag_20003": "asc",
"Flag_20004": "asc",
"Flag_20005": "asc",
"Flag_20006": "asc",
"Flag_20007": "asc",
"Flag_20008": "asc",
"Flag_20009": "asc",
"Flag_20010": "asc",
"Flag_20011": "asc",
"Flag_20012": "asc",
"Flag_20013": "asc",
"Flag_20014": "asc",
"Flag_20015": "asc",
"Flag_20016": "asc",
"Flag_20017": "asc",
"Flag_Begruendung": "asc",
"Flag_Deleted": "asc",
"Flag_Sync": "asc",
"Flag_Visible": "asc",
"Grenze_A": "asc",
"Grenze_C": "asc",
"ID_Art": "asc",
"ID_DataType": "asc",
"ID_KBS": "asc",
"ID_KBSGruppe": "asc",
"ID_KBS_Prev": "asc",
"ID_Mapping": "asc",
"ID_Sort": "asc",
"ID_Version": "asc",
"ID_Wichtung": "asc",
"IDs_Required": "asc",
"JahrBis": "asc",
"JahrVon": "asc",
"Kriterium": "asc",
"Kriterium_Info": "asc"
}
FFHSpeciesCriterion
Description
Assessment criteria for species of the Habitats Directive 92/43/EWG
Fields
Field Name | Description |
---|---|
A - String
|
Boundary for assessment value A |
B - String
|
Boundary for assessment value B |
C - String
|
Boundary for assessment value C |
Einheit - String
|
Unit of measurement |
Flag_20001 - Boolean
|
Whether the criteria is used in Baden-Wuerttemberg |
Flag_20002 - Boolean
|
Whether the criteria is used in Bavaria |
Flag_20003 - Boolean
|
Whether the criteria is used in Brandenburg |
Flag_20004 - Boolean
|
Whether the criteria is used in Bremen |
Flag_20005 - Boolean
|
Whether the criteria is used in Hamburg |
Flag_20006 - Boolean
|
Whether the criteria is used in Hesse |
Flag_20007 - Boolean
|
Whether the criteria is used in Mecklenburg-Western Pomerania |
Flag_20008 - Boolean
|
Whether the criteria is used in Lower Saxony |
Flag_20009 - Boolean
|
Whether the criteria is used in North Rhine-Westphalia |
Flag_20010 - Boolean
|
Whether the criteria is used in Rhineland-Palatinate |
Flag_20011 - Boolean
|
Whether the criteria is used in Saarland |
Flag_20012 - Boolean
|
Whether the criteria is used in Saxony |
Flag_20013 - Boolean
|
Whether the criteria is used in Saxony-Anhalt |
Flag_20014 - Boolean
|
Whether the criteria is used in Schleswig-Holstein |
Flag_20015 - Boolean
|
Whether the criteria is used in Thuringia |
Flag_20016 - Boolean
|
Whether the criteria is used in Germany |
Flag_20017 - Boolean
|
Whether the criteria is used in Berlin |
Flag_Begruendung - Boolean
|
Whether a reason is required for the assessment |
Flag_Deleted - Boolean
|
Deleted flag for deprecated habitat type criteria |
Grenze_A - Float
|
Numerical boundary for assessment value A |
Grenze_C - Float
|
Numerical boundary for assessment value C |
ID_Art - Int!
|
Species ID |
ID_DataType - Float
|
ID of the data type |
ID_KBS - Int!
|
Criterion ID |
ID_KBSGruppe - Float
|
Criterion group ID |
ID_KBS_Prev - Float
|
ID of the previous criterion |
ID_Mapping - Float
|
ID of the mapping |
ID_Sort - Float
|
Sort order |
ID_Version - Float
|
Current version number |
ID_Wichtung - Float
|
|
IDs_Required - String
|
Mandatory criteria IDs (string representation of array) |
JahrBis - Float
|
Valid until year |
JahrVon - Float
|
Valid from year |
Kriterium - String
|
Criterion name |
Kriterium_Info - String
|
Criterion assessment info |
Species - Species
|
Example
{
"A": "xyz789",
"B": "abc123",
"C": "abc123",
"Einheit": "abc123",
"Flag_20001": true,
"Flag_20002": false,
"Flag_20003": true,
"Flag_20004": true,
"Flag_20005": false,
"Flag_20006": true,
"Flag_20007": true,
"Flag_20008": true,
"Flag_20009": true,
"Flag_20010": true,
"Flag_20011": false,
"Flag_20012": true,
"Flag_20013": false,
"Flag_20014": false,
"Flag_20015": true,
"Flag_20016": true,
"Flag_20017": true,
"Flag_Begruendung": true,
"Flag_Deleted": true,
"Grenze_A": 987.65,
"Grenze_C": 987.65,
"ID_Art": 987,
"ID_DataType": 987.65,
"ID_KBS": 987,
"ID_KBSGruppe": 987.65,
"ID_KBS_Prev": 123.45,
"ID_Mapping": 987.65,
"ID_Sort": 987.65,
"ID_Version": 123.45,
"ID_Wichtung": 987.65,
"IDs_Required": "abc123",
"JahrBis": 123.45,
"JahrVon": 987.65,
"Kriterium": "abc123",
"Kriterium_Info": "xyz789",
"Species": Species
}
Float
Description
The Float
scalar type represents signed double-precision fractional values as specified by IEEE 754.
Example
123.45
GeocodingLayers
Values
Enum Value | Description |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"address"
GeocodingPlaceFeature
Description
Geocoding result place feature as GeoJSON feature
Fields
Field Name | Description |
---|---|
bbox - [Float!]!
|
Bounding box of the results |
geometry - GeocodingPlaceFeatureGeometry!
|
GeoJSON feature geometry |
properties - GeocodingPlaceFeatureProperties!
|
GeoJSON feature properties |
type - String!
|
Feature |
Example
{
"bbox": [987.65],
"geometry": GeocodingPlaceFeatureGeometry,
"properties": GeocodingPlaceFeatureProperties,
"type": "xyz789"
}
GeocodingPlaceFeatureGeometry
GeocodingPlaceFeatureProperties
Description
Geocoding result place feature properties as GeoJSON feature properties
Fields
Field Name | Description |
---|---|
accuracy - String!
|
|
borough - String
|
|
borough_gid - String
|
|
category - [String!]
|
|
confidence - Float
|
|
continent - String
|
|
continent_gid - String
|
|
country - String
|
|
country_a - String
|
|
country_gid - String
|
|
distance - Float
|
Distance, in kilometers, from the query point. |
gid - String!
|
|
housenumber - String
|
|
id - String!
|
|
label - String!
|
|
layer - String!
|
|
localadmin - String
|
|
localadmin_gid - String
|
|
locality - String
|
|
locality_gid - String
|
|
macrocounty - String
|
|
macrocounty_gid - String
|
|
macroregion - String
|
|
macroregion_gid - String
|
|
name - String!
|
|
neighbourhood - String
|
|
neighbourhood_gid - String
|
|
postalcode - String
|
|
region - String
|
|
region_gid - String
|
|
source - String!
|
|
source_id - String!
|
|
street - String
|
Example
{
"accuracy": "xyz789",
"borough": "xyz789",
"borough_gid": "xyz789",
"category": ["abc123"],
"confidence": 123.45,
"continent": "xyz789",
"continent_gid": "xyz789",
"country": "abc123",
"country_a": "abc123",
"country_gid": "xyz789",
"distance": 123.45,
"gid": "abc123",
"housenumber": "xyz789",
"id": "xyz789",
"label": "xyz789",
"layer": "xyz789",
"localadmin": "abc123",
"localadmin_gid": "abc123",
"locality": "xyz789",
"locality_gid": "xyz789",
"macrocounty": "xyz789",
"macrocounty_gid": "xyz789",
"macroregion": "xyz789",
"macroregion_gid": "xyz789",
"name": "xyz789",
"neighbourhood": "xyz789",
"neighbourhood_gid": "abc123",
"postalcode": "abc123",
"region": "abc123",
"region_gid": "abc123",
"source": "abc123",
"source_id": "abc123",
"street": "xyz789"
}
GeocodingPlacesGeoJSON
Description
Geocoding result place as GeoJSON feature collection
Fields
Field Name | Description |
---|---|
bbox - [Float!]
|
Bounding box of the results |
features - [GeocodingPlaceFeature!]!
|
List of GeoJSON feature results that best match your input parameters |
type - String!
|
FeatureCollection |
Example
{
"bbox": [123.45],
"features": [GeocodingPlaceFeature],
"type": "xyz789"
}
GeocodingPlacesGeoJSONItemsDetailsSearchFilterInput
Description
Find a place by searching for an address or name.
Example
{"categories": false, "gids": ["xyz789"]}
GeocodingPlacesGeoJSONItemsReverseSearchFilterInput
Description
Find a place by searching for an address or name.
Fields
Input Field | Description |
---|---|
boundaryCircleRadius - Float
|
Radius of the circular bounding box to search within. |
boundaryCountry - String
|
Limit results to a comma separated list of alpha-2 or alpha-3 ISO-3166 country code. |
boundaryGid - String
|
Return only records with a given parent Pelias id (gid). |
layers - [GeocodingLayers!]
|
Limit results to specific layer types. |
pointLat - Float
|
Latitude of the point to reverse geocode. |
pointLon - Float
|
Longitude of the point to reverse geocode. |
sources - [GeocodingSources!]
|
Limit results to a specific datasource (OpenStreetMap, OpenAddresses, Who's on First, GeoNames). |
Example
{
"boundaryCircleRadius": 987.65,
"boundaryCountry": "xyz789",
"boundaryGid": "xyz789",
"layers": ["address"],
"pointLat": 123.45,
"pointLon": 123.45,
"sources": ["geonames"]
}
GeocodingPlacesGeoJSONItemsSearchFilterInput
Description
Find a place by searching for an address or name.
Fields
Input Field | Description |
---|---|
boundaryCircleLat - Float
|
Latitude of the center of the circular bounding box to search within. |
boundaryCircleLon - Float
|
Longitude of the center of the circular bounding box to search within. |
boundaryCircleRadius - Float
|
Radius of the circular bounding box to search within. |
boundaryCountry - String
|
Limit results to a comma separated list of alpha-2 or alpha-3 ISO-3166 country code. |
boundaryGid - String
|
Return only records with a given parent Pelias id (gid). |
boundaryRectMaxLat - Float
|
Maximum latitude of the rectangular bounding box to search within. |
boundaryRectMaxLon - Float
|
Maximum logitude of the rectangular bounding box to search within. |
boundaryRectMinLat - Float
|
Minimum latitude of the rectangular bounding box to search within. |
boundaryRectMinLon - Float
|
Minimum longitude of the rectangular bounding box to search within. |
focusPointLat - Float
|
Results will be sorted in part by their proximity to the given coordinate. Results closest to the point will show up higher. |
focusPointLon - Float
|
Results will be sorted in part by their proximity to the given coordinate. Results closest to the point will show up higher. |
isAutocomplete - Boolean
|
Give real-time result suggestions without having to type the whole location. Default = false |
layers - [GeocodingLayers!]
|
Limit results to specific layer types. |
size - Int!
|
Number of results to return. Default = 10 |
sources - [GeocodingSources!]
|
Limit results to a specific datasource (OpenStreetMap, OpenAddresses, Who's on First, GeoNames). |
text - String!
|
Free form search text to match in any part of the location details |
Example
{
"boundaryCircleLat": 123.45,
"boundaryCircleLon": 987.65,
"boundaryCircleRadius": 123.45,
"boundaryCountry": "xyz789",
"boundaryGid": "abc123",
"boundaryRectMaxLat": 123.45,
"boundaryRectMaxLon": 123.45,
"boundaryRectMinLat": 123.45,
"boundaryRectMinLon": 123.45,
"focusPointLat": 123.45,
"focusPointLon": 123.45,
"isAutocomplete": false,
"layers": ["address"],
"size": 123,
"sources": ["geonames"],
"text": "abc123"
}
GeocodingPlacesGeoJSONItemsSearchStructuredFilterInput
Description
Find a place with data already separated into housenumber, street, city, etc.
Fields
Input Field | Description |
---|---|
address - String
|
The address parameter can contain a full address with house number or only a street name. |
borough - String
|
Boroughs are mostly known in the context of New York City, even though they may exist in other cities, such as Mexico City. |
boundaryCircleLat - Float
|
Latitude of the center of the circular bounding box to search within. |
boundaryCircleLon - Float
|
Longitude of the center of the circular bounding box to search within. |
boundaryCircleRadius - Float
|
Radius of the circular bounding box to search within. |
boundaryCountry - String
|
Limit results to a comma separated list of alpha-2 or alpha-3 ISO-3166 country code. |
boundaryGid - String
|
Return only records with a given parent Pelias id (gid). |
boundaryRectMaxLat - Float
|
Maximum latitude of the rectangular bounding box to search within. |
boundaryRectMaxLon - Float
|
Maximum logitude of the rectangular bounding box to search within. |
boundaryRectMinLat - Float
|
Minimum latitude of the rectangular bounding box to search within. |
boundaryRectMinLon - Float
|
Minimum longitude of the rectangular bounding box to search within. |
country - String
|
Countries are the highest-level administrative divisions supported in a search. The country parameter can be a full name, a two letter ISO 3166-1 alpha-2 country code, or a three letter ISO 3166-1 alpha-3 country code. |
county - String
|
Counties are administrative divisions between localities and regions. |
focusPointLat - Float
|
Results will be sorted in part by their proximity to the given coordinate. Results closest to the point will show up higher. |
focusPointLon - Float
|
Results will be sorted in part by their proximity to the given coordinate. Results closest to the point will show up higher. |
layers - [GeocodingLayers!]
|
Limit results to specific layer types. |
locality - String
|
Localities are equivalent to what are commonly referred to as cities. |
neighbourhood - String
|
Neighbourhoods are vernacular geographic entities that may not necessarily be official administrative divisions but are important nonetheless. |
postalcode - String
|
Postal codes are used to aid in sorting mail with the format dictated by an administrative division, which is almost always countries. Among other reasons, postal codes are unique within a country so they are useful in geocoding as a shorthand for a fairly granular geographical location. |
region - String
|
Regions are normally the first-level administrative divisions within countries, analogous to states and provinces in the United States and Canada, respectively, though most other countries contain regions as well. The region parameter can be a full name or abbreviation. |
size - Int!
|
Number of results to return. Default = 10 |
sources - [GeocodingSources!]
|
Limit results to a specific datasource (OpenStreetMap, OpenAddresses, Who's on First, GeoNames). |
text - String
|
Free form search text to match in any part of the location details |
Example
{
"address": "xyz789",
"borough": "xyz789",
"boundaryCircleLat": 987.65,
"boundaryCircleLon": 987.65,
"boundaryCircleRadius": 987.65,
"boundaryCountry": "xyz789",
"boundaryGid": "abc123",
"boundaryRectMaxLat": 987.65,
"boundaryRectMaxLon": 123.45,
"boundaryRectMinLat": 123.45,
"boundaryRectMinLon": 987.65,
"country": "xyz789",
"county": "xyz789",
"focusPointLat": 987.65,
"focusPointLon": 987.65,
"layers": ["address"],
"locality": "abc123",
"neighbourhood": "xyz789",
"postalcode": "xyz789",
"region": "abc123",
"size": 123,
"sources": ["geonames"],
"text": "abc123"
}
GeocodingSources
Values
Enum Value | Description |
---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
"geonames"
Group
Description
Taxa species groups
Fields
Field Name | Description |
---|---|
Category - Category
|
|
Flag_Deleted - Boolean
|
Flag for deprecated groups |
Flag_Sync - Boolean
|
Flag to indicate sync status |
Gruppe - String
|
German name of the group |
Gruppe_wiss - String
|
Scientific name of the group (lat.) |
ID_Gruppe - Int!
|
Group ID |
ID_Kategorie - Int
|
ID of parent category |
ID_Version - Int
|
Current version number |
Species - [Species!]
|
|
Subgroups - [Subgroup!]
|
Example
{
"Category": Category,
"Flag_Deleted": true,
"Flag_Sync": true,
"Gruppe": "abc123",
"Gruppe_wiss": "abc123",
"ID_Gruppe": 123,
"ID_Kategorie": 987,
"ID_Version": 123,
"Species": [Species],
"Subgroups": [Subgroup]
}
GroupsFilterInput
Fields
Input Field | Description |
---|---|
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "Group") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "Group") |
Gruppe - StringFilter
|
Filter by Gruppe (see type "Group") |
Gruppe_wiss - StringFilter
|
Filter by Gruppe_wiss (see type "Group") |
ID_Gruppe - NumberFilter
|
Filter by ID_Gruppe (see type "Group") |
ID_Kategorie - NumberFilter
|
Filter by ID_Kategorie (see type "Group") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "Group") |
_and - [GroupsFilterInput!]
|
Logical AND operator |
_or - [GroupsFilterInput!]
|
Logical OR operator |
Example
{
"Flag_Deleted": BooleanFilter,
"Flag_Sync": BooleanFilter,
"Gruppe": StringFilter,
"Gruppe_wiss": StringFilter,
"ID_Gruppe": NumberFilter,
"ID_Kategorie": NumberFilter,
"ID_Version": NumberFilter,
"_and": [GroupsFilterInput],
"_or": [GroupsFilterInput]
}
GroupsOrderByInput
Fields
Input Field | Description |
---|---|
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "Group") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "Group") |
Gruppe - SortOrder
|
Sort by Gruppe (see type "Group") |
Gruppe_wiss - SortOrder
|
Sort by Gruppe_wiss (see type "Group") |
ID_Gruppe - SortOrder
|
Sort by ID_Gruppe (see type "Group") |
ID_Kategorie - SortOrder
|
Sort by ID_Kategorie (see type "Group") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "Group") |
Example
{
"Flag_Deleted": "asc",
"Flag_Sync": "asc",
"Gruppe": "asc",
"Gruppe_wiss": "asc",
"ID_Gruppe": "asc",
"ID_Kategorie": "asc",
"ID_Version": "asc"
}
ID
Description
The ID
scalar type represents a unique identifier, often used to refetch an object or as key for a cache. The ID type appears in a JSON response as a String; however, it is not intended to be human-readable. When expected as an input type, any string (such as "4"
) or integer (such as 4
) input value will be accepted as an ID.
Example
"4"
IdentificationMethod
Description
Taxa species identification methods
Fields
Field Name | Description |
---|---|
Beschreibung - String
|
Identification method description |
Categories - [Category!]!
|
|
Arguments
|
|
Flag_1 - Boolean
|
Whether the identification method can be selected for taxa of category 1 (Amphibians/Reptiles). |
Flag_2 - Boolean
|
Whether the identification method can be selected for taxa of category 2 (Fish). |
Flag_3 - Boolean
|
Whether the identification method can be selected for taxa of category 3 (Mammals). |
Flag_4 - Boolean
|
Whether the identification method can be selected for taxa of category 4 (Birds). |
Flag_5 - Boolean
|
Whether the identification method can be selected for taxa of category 5 (Invertebrates). |
Flag_6 - Boolean
|
Whether the identification method can be selected for taxa of category 6 (Plants). |
Flag_7 - Boolean
|
Whether the identification method can be selected for taxa of category 7 (Funghi). |
Flag_Deleted - Boolean
|
Flag for deprecated identification methods |
Flag_Short - Boolean
|
Whether the identification method is included in the short list of most common identification methods. |
Flag_Sync - Boolean
|
Flag to indicate sync status |
Flag_Visible - Boolean
|
Whether the identification method is visible. |
GUID_Nachweistyp - String!
|
Identification method GUID |
ID_Nachweistyp - Int!
|
Identification method ID |
ID_Version - Int
|
Current version number |
Kuerzel - String
|
Identification method abbreviation |
Modul_1 - Boolean
|
|
Modul_2 - Boolean
|
|
Modul_3 - Boolean
|
|
Modul_4 - Boolean
|
|
Modul_5 - Boolean
|
|
Modul_6 - Boolean
|
|
Modul_7 - Boolean
|
|
Modul_8 - Boolean
|
|
Modul_9 - Boolean
|
|
Modul_10 - Boolean
|
|
Modul_11 - Boolean
|
|
Modul_12 - Boolean
|
|
Modul_13 - Boolean
|
|
Modul_14 - Boolean
|
|
Modul_15 - Boolean
|
|
Nachweistyp - String
|
Identification method name |
RefID - Int
|
Example
{
"Beschreibung": "xyz789",
"Categories": [Category],
"Flag_1": false,
"Flag_2": true,
"Flag_3": true,
"Flag_4": true,
"Flag_5": true,
"Flag_6": false,
"Flag_7": false,
"Flag_Deleted": true,
"Flag_Short": false,
"Flag_Sync": true,
"Flag_Visible": false,
"GUID_Nachweistyp": "xyz789",
"ID_Nachweistyp": 987,
"ID_Version": 123,
"Kuerzel": "abc123",
"Modul_1": true,
"Modul_2": true,
"Modul_3": false,
"Modul_4": true,
"Modul_5": true,
"Modul_6": true,
"Modul_7": false,
"Modul_8": true,
"Modul_9": true,
"Modul_10": true,
"Modul_11": true,
"Modul_12": false,
"Modul_13": false,
"Modul_14": true,
"Modul_15": true,
"Nachweistyp": "xyz789",
"RefID": 123
}
IdentificationMethodsFilterInput
Fields
Input Field | Description |
---|---|
Beschreibung - StringFilter
|
Filter by Beschreibung (see type "IdentificationMethod") |
Flag_1 - BooleanFilter
|
Filter by Flag_1 (see type "IdentificationMethod") |
Flag_2 - BooleanFilter
|
Filter by Flag_2 (see type "IdentificationMethod") |
Flag_3 - BooleanFilter
|
Filter by Flag_3 (see type "IdentificationMethod") |
Flag_4 - BooleanFilter
|
Filter by Flag_4 (see type "IdentificationMethod") |
Flag_5 - BooleanFilter
|
Filter by Flag_5 (see type "IdentificationMethod") |
Flag_6 - BooleanFilter
|
Filter by Flag_6 (see type "IdentificationMethod") |
Flag_7 - BooleanFilter
|
Filter by Flag_7 (see type "IdentificationMethod") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "IdentificationMethod") |
Flag_Short - BooleanFilter
|
Filter by Flag_Short (see type "IdentificationMethod") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "IdentificationMethod") |
Flag_Visible - BooleanFilter
|
Filter by Flag_Visible (see type "IdentificationMethod") |
GUID_Nachweistyp - StringFilter
|
Filter by GUID_Nachweistyp (see type "IdentificationMethod") |
ID_Nachweistyp - NumberFilter
|
Filter by ID_Nachweistyp (see type "IdentificationMethod") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "IdentificationMethod") |
Kuerzel - StringFilter
|
Filter by Kuerzel (see type "IdentificationMethod") |
Modul_1 - BooleanFilter
|
Filter by Modul_1 (see type "IdentificationMethod") |
Modul_2 - BooleanFilter
|
Filter by Modul_2 (see type "IdentificationMethod") |
Modul_3 - BooleanFilter
|
Filter by Modul_3 (see type "IdentificationMethod") |
Modul_4 - BooleanFilter
|
Filter by Modul_4 (see type "IdentificationMethod") |
Modul_5 - BooleanFilter
|
Filter by Modul_5 (see type "IdentificationMethod") |
Modul_6 - BooleanFilter
|
Filter by Modul_6 (see type "IdentificationMethod") |
Modul_7 - BooleanFilter
|
Filter by Modul_7 (see type "IdentificationMethod") |
Modul_8 - BooleanFilter
|
Filter by Modul_8 (see type "IdentificationMethod") |
Modul_9 - BooleanFilter
|
Filter by Modul_9 (see type "IdentificationMethod") |
Modul_10 - BooleanFilter
|
Filter by Modul_10 (see type "IdentificationMethod") |
Modul_11 - BooleanFilter
|
Filter by Modul_11 (see type "IdentificationMethod") |
Modul_12 - BooleanFilter
|
Filter by Modul_12 (see type "IdentificationMethod") |
Modul_13 - BooleanFilter
|
Filter by Modul_13 (see type "IdentificationMethod") |
Modul_14 - BooleanFilter
|
Filter by Modul_14 (see type "IdentificationMethod") |
Modul_15 - BooleanFilter
|
Filter by Modul_15 (see type "IdentificationMethod") |
Nachweistyp - StringFilter
|
Filter by Nachweistyp (see type "IdentificationMethod") |
RefID - NumberFilter
|
Filter by RefID (see type "IdentificationMethod") |
_and - [IdentificationMethodsFilterInput!]
|
Logical AND operator |
_or - [IdentificationMethodsFilterInput!]
|
Logical OR operator |
Example
{
"Beschreibung": StringFilter,
"Flag_1": BooleanFilter,
"Flag_2": BooleanFilter,
"Flag_3": BooleanFilter,
"Flag_4": BooleanFilter,
"Flag_5": BooleanFilter,
"Flag_6": BooleanFilter,
"Flag_7": BooleanFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Short": BooleanFilter,
"Flag_Sync": BooleanFilter,
"Flag_Visible": BooleanFilter,
"GUID_Nachweistyp": StringFilter,
"ID_Nachweistyp": NumberFilter,
"ID_Version": NumberFilter,
"Kuerzel": StringFilter,
"Modul_1": BooleanFilter,
"Modul_2": BooleanFilter,
"Modul_3": BooleanFilter,
"Modul_4": BooleanFilter,
"Modul_5": BooleanFilter,
"Modul_6": BooleanFilter,
"Modul_7": BooleanFilter,
"Modul_8": BooleanFilter,
"Modul_9": BooleanFilter,
"Modul_10": BooleanFilter,
"Modul_11": BooleanFilter,
"Modul_12": BooleanFilter,
"Modul_13": BooleanFilter,
"Modul_14": BooleanFilter,
"Modul_15": BooleanFilter,
"Nachweistyp": StringFilter,
"RefID": NumberFilter,
"_and": [IdentificationMethodsFilterInput],
"_or": [IdentificationMethodsFilterInput]
}
IdentificationMethodsOrderByInput
Fields
Input Field | Description |
---|---|
Beschreibung - SortOrder
|
Sort by Beschreibung (see type "IdentificationMethod") |
Flag_1 - SortOrder
|
Sort by Flag_1 (see type "IdentificationMethod") |
Flag_2 - SortOrder
|
Sort by Flag_2 (see type "IdentificationMethod") |
Flag_3 - SortOrder
|
Sort by Flag_3 (see type "IdentificationMethod") |
Flag_4 - SortOrder
|
Sort by Flag_4 (see type "IdentificationMethod") |
Flag_5 - SortOrder
|
Sort by Flag_5 (see type "IdentificationMethod") |
Flag_6 - SortOrder
|
Sort by Flag_6 (see type "IdentificationMethod") |
Flag_7 - SortOrder
|
Sort by Flag_7 (see type "IdentificationMethod") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "IdentificationMethod") |
Flag_Short - SortOrder
|
Sort by Flag_Short (see type "IdentificationMethod") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "IdentificationMethod") |
Flag_Visible - SortOrder
|
Sort by Flag_Visible (see type "IdentificationMethod") |
GUID_Nachweistyp - SortOrder
|
Sort by GUID_Nachweistyp (see type "IdentificationMethod") |
ID_Nachweistyp - SortOrder
|
Sort by ID_Nachweistyp (see type "IdentificationMethod") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "IdentificationMethod") |
Kuerzel - SortOrder
|
Sort by Kuerzel (see type "IdentificationMethod") |
Modul_1 - SortOrder
|
Sort by Modul_1 (see type "IdentificationMethod") |
Modul_2 - SortOrder
|
Sort by Modul_2 (see type "IdentificationMethod") |
Modul_3 - SortOrder
|
Sort by Modul_3 (see type "IdentificationMethod") |
Modul_4 - SortOrder
|
Sort by Modul_4 (see type "IdentificationMethod") |
Modul_5 - SortOrder
|
Sort by Modul_5 (see type "IdentificationMethod") |
Modul_6 - SortOrder
|
Sort by Modul_6 (see type "IdentificationMethod") |
Modul_7 - SortOrder
|
Sort by Modul_7 (see type "IdentificationMethod") |
Modul_8 - SortOrder
|
Sort by Modul_8 (see type "IdentificationMethod") |
Modul_9 - SortOrder
|
Sort by Modul_9 (see type "IdentificationMethod") |
Modul_10 - SortOrder
|
Sort by Modul_10 (see type "IdentificationMethod") |
Modul_11 - SortOrder
|
Sort by Modul_11 (see type "IdentificationMethod") |
Modul_12 - SortOrder
|
Sort by Modul_12 (see type "IdentificationMethod") |
Modul_13 - SortOrder
|
Sort by Modul_13 (see type "IdentificationMethod") |
Modul_14 - SortOrder
|
Sort by Modul_14 (see type "IdentificationMethod") |
Modul_15 - SortOrder
|
Sort by Modul_15 (see type "IdentificationMethod") |
Nachweistyp - SortOrder
|
Sort by Nachweistyp (see type "IdentificationMethod") |
RefID - SortOrder
|
Sort by RefID (see type "IdentificationMethod") |
Example
{
"Beschreibung": "asc",
"Flag_1": "asc",
"Flag_2": "asc",
"Flag_3": "asc",
"Flag_4": "asc",
"Flag_5": "asc",
"Flag_6": "asc",
"Flag_7": "asc",
"Flag_Deleted": "asc",
"Flag_Short": "asc",
"Flag_Sync": "asc",
"Flag_Visible": "asc",
"GUID_Nachweistyp": "asc",
"ID_Nachweistyp": "asc",
"ID_Version": "asc",
"Kuerzel": "asc",
"Modul_1": "asc",
"Modul_2": "asc",
"Modul_3": "asc",
"Modul_4": "asc",
"Modul_5": "asc",
"Modul_6": "asc",
"Modul_7": "asc",
"Modul_8": "asc",
"Modul_9": "asc",
"Modul_10": "asc",
"Modul_11": "asc",
"Modul_12": "asc",
"Modul_13": "asc",
"Modul_14": "asc",
"Modul_15": "asc",
"Nachweistyp": "asc",
"RefID": "asc"
}
InsertMonitoringDataInput
Fields
Input Field | Description |
---|---|
Data_1 - String
|
Data 1 |
Data_2 - String
|
Data 2 |
Data_3 - String
|
Data 3 |
Data_4 - String
|
Data 4 |
Date_Changed - DateTime
|
Date of last change |
Date_Create - DateTime
|
Creation date |
GUID_MonitoringDaten - String
|
Monitoring data GUID |
ID_Data_1 - Int
|
Data 1 ID |
ID_Data_2 - Int
|
Data 2 ID |
ID_Data_3 - Int
|
Data 3 ID |
ID_Data_4 - Int
|
Data 4 ID |
ID_Data_5 - Int
|
Data 5 ID |
ID_Monitoringtyp - Int!
|
Monitoring type ID |
ID_Parameter - Int!
|
Parameter ID |
ID_Referenz - Int!
|
Reference ID. Default = 0 |
Wert - String
|
Monitoring data value |
Wert_Long - Int
|
Long value (required for ID_Datentyp = 4 (number)) |
Example
{
"Data_1": "xyz789",
"Data_2": "xyz789",
"Data_3": "abc123",
"Data_4": "xyz789",
"Date_Changed": "2007-12-03T10:15:30Z",
"Date_Create": "2007-12-03T10:15:30Z",
"GUID_MonitoringDaten": "abc123",
"ID_Data_1": 987,
"ID_Data_2": 123,
"ID_Data_3": 123,
"ID_Data_4": 123,
"ID_Data_5": 987,
"ID_Monitoringtyp": 987,
"ID_Parameter": 123,
"ID_Referenz": 123,
"Wert": "xyz789",
"Wert_Long": 987
}
InsertObservationAdditionalDataInput
Fields
Input Field | Description |
---|---|
Aktenzeichen - String
|
|
AnzahlUnberingt - Float
|
|
Brutnummer - Float
|
|
DatumWiedervorlage - DateTime
|
|
Flag_BatBaseDataValid - Boolean
|
|
Flag_Benachrichtigt - Boolean
|
|
Flag_CoordsLocked - Boolean
|
|
Flag_DataValid - Boolean
|
|
Flag_DruckstatusValid - Boolean
|
|
Flag_KorrekturDataValid - Boolean
|
|
Flag_Publiziert - Boolean
|
|
Flugrichtung - String
|
|
Flugstrecke - Float
|
|
Formular_ID - String
|
|
GUID_Daten_Copy - String
|
|
GUID_Daten_Original - String
|
|
Geburt - DateTime
|
Date of birth |
ID_AktuellerZustand - Float
|
|
ID_Art_Wirtsvogel - Float
|
|
ID_BStatus_1 - Float
|
|
ID_BStatus_2 - Float
|
|
ID_BStatus_3 - Float
|
|
ID_BStatus_4 - Float
|
|
ID_Bearbeitungsstatus - Float
|
|
ID_Biotop - Float
|
|
ID_Fundstatus - Float
|
|
ID_Fundursache - Float
|
|
ID_Fundzustand - Float
|
|
ID_Geschlecht - Float
|
|
ID_Koerperseite - Float
|
|
ID_Nachweissicherheit_Erst - Float
|
|
ID_UnklareMeldung - Float
|
|
ID_VerifikationRing - Float
|
|
ID_Verletzung - Float
|
|
ID_Vorgang - Float
|
|
Lebensalter - String
|
Age |
LenFluegel - Float
|
|
LenTeilfeder - Float
|
|
RegionDet - String
|
|
Tagesdifferenz - Float
|
|
WeitereBeobachter - String
|
|
Zeitdifferenz - String
|
|
wwFlugrichtung - String
|
|
wwFlugstrecke - Float
|
|
wwTagesdifferenz - Float
|
|
wwZeitdifferenz - String
|
Example
{
"Aktenzeichen": "abc123",
"AnzahlUnberingt": 123.45,
"Brutnummer": 123.45,
"DatumWiedervorlage": "2007-12-03T10:15:30Z",
"Flag_BatBaseDataValid": true,
"Flag_Benachrichtigt": false,
"Flag_CoordsLocked": true,
"Flag_DataValid": true,
"Flag_DruckstatusValid": false,
"Flag_KorrekturDataValid": true,
"Flag_Publiziert": true,
"Flugrichtung": "xyz789",
"Flugstrecke": 987.65,
"Formular_ID": "abc123",
"GUID_Daten_Copy": "xyz789",
"GUID_Daten_Original": "xyz789",
"Geburt": "2007-12-03T10:15:30Z",
"ID_AktuellerZustand": 987.65,
"ID_Art_Wirtsvogel": 123.45,
"ID_BStatus_1": 987.65,
"ID_BStatus_2": 123.45,
"ID_BStatus_3": 123.45,
"ID_BStatus_4": 123.45,
"ID_Bearbeitungsstatus": 987.65,
"ID_Biotop": 123.45,
"ID_Fundstatus": 987.65,
"ID_Fundursache": 987.65,
"ID_Fundzustand": 123.45,
"ID_Geschlecht": 123.45,
"ID_Koerperseite": 987.65,
"ID_Nachweissicherheit_Erst": 987.65,
"ID_UnklareMeldung": 987.65,
"ID_VerifikationRing": 123.45,
"ID_Verletzung": 123.45,
"ID_Vorgang": 123.45,
"Lebensalter": "abc123",
"LenFluegel": 987.65,
"LenTeilfeder": 123.45,
"RegionDet": "xyz789",
"Tagesdifferenz": 123.45,
"WeitereBeobachter": "xyz789",
"Zeitdifferenz": "abc123",
"wwFlugrichtung": "abc123",
"wwFlugstrecke": 987.65,
"wwTagesdifferenz": 987.65,
"wwZeitdifferenz": "xyz789"
}
InsertObservationDetailInput
Example
{
"GUID_Details": "xyz789",
"ID_UF": 987,
"UserItem": "abc123",
"Wert": "xyz789"
}
InsertObservationInput
Fields
Input Field | Description |
---|---|
Allochthonie - Boolean
|
Is the species allochthonous (not native to the site)? |
Anzahl - String
|
Number of individuals |
AnzahlAdult - Int
|
Number of adult individuals |
AnzahlBluehend - Int
|
Number of flowering individuals (for plants) |
AnzahlGeschAdult - Int
|
|
AnzahlGeschGesamt - Int
|
|
AnzahlGeschJuvenil - Int
|
|
AnzahlJuvenil - Int
|
Number of juvenile individuals |
AnzahlMaennl - Int
|
Number of masculine individuals |
AnzahlNichtBluehend - Int
|
Number of non-flowering individuals (for plants) |
AnzahlTFAdult - Int
|
|
AnzahlTFJuvenil - Int
|
|
AnzahlWFMaennl - Int
|
|
AnzahlWFWeibl - Int
|
|
AnzahlWeibl - Int
|
Number of feminine individuals |
Anzahl_1 - Int
|
|
Anzahl_2 - Int
|
|
Anzahl_3 - Int
|
|
Anzahl_4 - Int
|
|
Anzahl_5 - Int
|
|
Anzahl_6 - Int
|
|
Anzahl_7 - Int
|
|
Anzahl_8 - Int
|
|
Anzahl_9 - Int
|
|
Anzahl_10 - Int
|
|
Anzahl_11 - Int
|
|
Anzahl_12 - Int
|
|
Anzahl_Max - Int
|
|
Anzahl_Min - Int
|
|
Bemerkung - String
|
Observation comment |
Biotop - String
|
|
Datum - DateTime
|
Observation date |
Datum_GeprueftAm - DateTime
|
|
Details - String
|
Observation details |
Erfassungsname - String
|
|
Flag - Boolean
|
|
Flag_Aggregiert - Boolean
|
|
Flag_Basisort - Boolean
|
|
Flag_Beringung - Boolean
|
|
Flag_Deleted - Boolean
|
|
Flag_Export - Boolean
|
|
Flag_Filter - Boolean
|
|
Flag_Intern - Boolean
|
|
Flag_Trash - Boolean
|
|
GUID_Atlas - String
|
|
GUID_Beobachter - String
|
|
GUID_Bestimmer - String
|
|
GUID_Daten - String
|
Observation GUID |
GUID_Datenbankherkunft - String
|
Only for internal use! Do not set if you are not sure! |
GUID_GeprueftVon - String
|
|
GUID_Group - String
|
|
GUID_Herkunft - String
|
|
GUID_Import - String
|
|
GUID_Kasten - String
|
|
GUID_Ort - String
|
|
GUID_Sammlung - String
|
|
Geprueft_Info - String
|
|
Hoehe - Int
|
|
ID_AddIn - Int
|
|
ID_Alter - Int
|
|
ID_Art - Int!
|
Species ID |
ID_Art_Negativnachweis - Int
|
|
ID_Art_NichtKartiert - Int
|
|
ID_Besatz - Int
|
|
ID_Deckungsgrad - Int
|
|
ID_Einheit - Int
|
Unit ID |
ID_FundTyp - Int
|
|
ID_GenauigkeitAnzahl - Int
|
|
ID_GenauigkeitDatum - Int
|
|
ID_Habitat - Int
|
|
ID_Herausgabegenauigkeit - Int
|
|
ID_Material - Int
|
|
ID_Nachweissicherheit - Int
|
|
ID_Nachweistyp - Int
|
Identification method ID |
ID_Qualitaet - Int
|
|
ID_Quartiertyp - Int
|
|
ID_Reproduktion - Int
|
Reproduction ID |
ID_Revierstatus - Int
|
|
ID_Schicht - Int
|
|
ID_Stadium - Int
|
|
ID_Substrat - Int
|
|
ID_Substratzustand - Int
|
|
ID_Toleranz - Int
|
Tolerance ID |
ID_Traegerbaum - Int
|
|
ID_Verhalten - Int
|
Behaviour ID |
ID_Verwendung - Int
|
|
ID_Wuchsstelle - Int
|
|
Jahr - Int
|
Year of the observation date |
LAEACellCode - Int
|
|
LAEARaster - String
|
|
Len5Finger - Float
|
|
LenDaumen - Float
|
|
LenUnterarm - Float
|
|
MTB - Int
|
Map quadrant ID (TK25) |
MTBQ - Int
|
Map sub-quadrant ID (TK25) |
Masse - Float
|
|
Masse_kg_gesamt - Float
|
|
Merkmal - String
|
|
Monat - Int
|
Month of the observation date |
Ortsbezeichnung - String
|
General site name |
Quelle - String
|
|
Raster - String
|
|
RefID - Int
|
|
ReferenzNr - String
|
|
Region - String
|
|
Ringnummer - String
|
|
RingnummerText - String
|
|
Ringserie - String
|
|
Vector_Grad - Int
|
|
Vector_Meter - Int
|
|
Zentrale - String
|
|
additionalData - InsertObservationAdditionalDataInput
|
|
detailData - [InsertObservationDetailInput!]
|
|
monitoringData - [InsertMonitoringDataInput!]
|
|
sDBHerkunft - String
|
|
xWGS84 - Float
|
|
yWGS84 - Float
|
Example
{
"Allochthonie": true,
"Anzahl": "xyz789",
"AnzahlAdult": 987,
"AnzahlBluehend": 123,
"AnzahlGeschAdult": 987,
"AnzahlGeschGesamt": 123,
"AnzahlGeschJuvenil": 987,
"AnzahlJuvenil": 987,
"AnzahlMaennl": 123,
"AnzahlNichtBluehend": 123,
"AnzahlTFAdult": 987,
"AnzahlTFJuvenil": 123,
"AnzahlWFMaennl": 987,
"AnzahlWFWeibl": 123,
"AnzahlWeibl": 987,
"Anzahl_1": 123,
"Anzahl_2": 987,
"Anzahl_3": 123,
"Anzahl_4": 123,
"Anzahl_5": 123,
"Anzahl_6": 123,
"Anzahl_7": 987,
"Anzahl_8": 987,
"Anzahl_9": 987,
"Anzahl_10": 123,
"Anzahl_11": 987,
"Anzahl_12": 987,
"Anzahl_Max": 123,
"Anzahl_Min": 987,
"Bemerkung": "abc123",
"Biotop": "abc123",
"Datum": "2007-12-03T10:15:30Z",
"Datum_GeprueftAm": "2007-12-03T10:15:30Z",
"Details": "xyz789",
"Erfassungsname": "xyz789",
"Flag": true,
"Flag_Aggregiert": false,
"Flag_Basisort": false,
"Flag_Beringung": true,
"Flag_Deleted": true,
"Flag_Export": true,
"Flag_Filter": true,
"Flag_Intern": true,
"Flag_Trash": true,
"GUID_Atlas": "xyz789",
"GUID_Beobachter": "xyz789",
"GUID_Bestimmer": "xyz789",
"GUID_Daten": "abc123",
"GUID_Datenbankherkunft": "abc123",
"GUID_GeprueftVon": "abc123",
"GUID_Group": "abc123",
"GUID_Herkunft": "abc123",
"GUID_Import": "xyz789",
"GUID_Kasten": "abc123",
"GUID_Ort": "xyz789",
"GUID_Sammlung": "abc123",
"Geprueft_Info": "abc123",
"Hoehe": 123,
"ID_AddIn": 123,
"ID_Alter": 987,
"ID_Art": 123,
"ID_Art_Negativnachweis": 123,
"ID_Art_NichtKartiert": 987,
"ID_Besatz": 123,
"ID_Deckungsgrad": 123,
"ID_Einheit": 987,
"ID_FundTyp": 987,
"ID_GenauigkeitAnzahl": 987,
"ID_GenauigkeitDatum": 987,
"ID_Habitat": 123,
"ID_Herausgabegenauigkeit": 987,
"ID_Material": 987,
"ID_Nachweissicherheit": 987,
"ID_Nachweistyp": 123,
"ID_Qualitaet": 123,
"ID_Quartiertyp": 987,
"ID_Reproduktion": 987,
"ID_Revierstatus": 123,
"ID_Schicht": 987,
"ID_Stadium": 987,
"ID_Substrat": 987,
"ID_Substratzustand": 123,
"ID_Toleranz": 987,
"ID_Traegerbaum": 123,
"ID_Verhalten": 123,
"ID_Verwendung": 987,
"ID_Wuchsstelle": 987,
"Jahr": 987,
"LAEACellCode": 123,
"LAEARaster": "abc123",
"Len5Finger": 123.45,
"LenDaumen": 987.65,
"LenUnterarm": 987.65,
"MTB": 123,
"MTBQ": 123,
"Masse": 123.45,
"Masse_kg_gesamt": 123.45,
"Merkmal": "abc123",
"Monat": 987,
"Ortsbezeichnung": "abc123",
"Quelle": "abc123",
"Raster": "xyz789",
"RefID": 123,
"ReferenzNr": "xyz789",
"Region": "abc123",
"Ringnummer": "abc123",
"RingnummerText": "xyz789",
"Ringserie": "abc123",
"Vector_Grad": 123,
"Vector_Meter": 123,
"Zentrale": "abc123",
"additionalData": InsertObservationAdditionalDataInput,
"detailData": [InsertObservationDetailInput],
"monitoringData": [InsertMonitoringDataInput],
"sDBHerkunft": "abc123",
"xWGS84": 987.65,
"yWGS84": 123.45
}
Int
Description
The Int
scalar type represents non-fractional signed whole numeric values. Int can represent values between -(2^31) and 2^31 - 1.
Example
123
MonitoringData
Description
Monitoring data
Fields
Field Name | Description |
---|---|
Data_1 - String
|
Data 1 |
Data_2 - String
|
Data 2 |
Data_3 - String
|
Data 3 |
Data_4 - String
|
Data 4 |
Date_Changed - DateTime
|
Date of last change |
Date_Create - DateTime
|
Creation date |
Date_Service - DateTime
|
Service date |
Flag_Deleted - Boolean
|
Flag for deprecated behaviours |
GUID_Daten - String!
|
Observation GUID |
GUID_MonitoringDaten - String!
|
Monitoring data GUID |
ID_Cloud - Int!
|
Cloud ID |
ID_Data_1 - Int
|
Data 1 ID |
ID_Data_2 - Int
|
Data 2 ID |
ID_Data_3 - Int
|
Data 3 ID |
ID_Data_4 - Int
|
Data 4 ID |
ID_Data_5 - Int
|
Data 5 ID |
ID_MonitoringDaten - Int!
|
Monitoring data ID |
ID_Monitoringtyp - Int!
|
Monitoring type ID |
ID_Parameter - Int!
|
Parameter ID |
ID_Referenz - Int!
|
Reference ID |
Wert - String
|
Monitoring data value |
Wert_Long - Int
|
Long value (required for ID_Datentyp = 4 (number)) |
Example
{
"Data_1": "abc123",
"Data_2": "xyz789",
"Data_3": "xyz789",
"Data_4": "xyz789",
"Date_Changed": "2007-12-03T10:15:30Z",
"Date_Create": "2007-12-03T10:15:30Z",
"Date_Service": "2007-12-03T10:15:30Z",
"Flag_Deleted": true,
"GUID_Daten": "abc123",
"GUID_MonitoringDaten": "xyz789",
"ID_Cloud": 123,
"ID_Data_1": 123,
"ID_Data_2": 987,
"ID_Data_3": 987,
"ID_Data_4": 123,
"ID_Data_5": 123,
"ID_MonitoringDaten": 123,
"ID_Monitoringtyp": 123,
"ID_Parameter": 123,
"ID_Referenz": 123,
"Wert": "xyz789",
"Wert_Long": 987
}
MonitoringDataFilterInput
Fields
Input Field | Description |
---|---|
Data_1 - StringFilter
|
Filter by Data_1 (see type "MonitoringData") |
Data_2 - StringFilter
|
Filter by Data_2 (see type "MonitoringData") |
Data_3 - StringFilter
|
Filter by Data_3 (see type "MonitoringData") |
Data_4 - StringFilter
|
Filter by Data_4 (see type "MonitoringData") |
Date_Changed - StringFilter
|
Filter by Date_Changed (see type "MonitoringData") |
Date_Create - StringFilter
|
Filter by Date_Create (see type "MonitoringData") |
Date_Service - StringFilter
|
Filter by Date_Service (see type "MonitoringData") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "MonitoringData") |
GUID_Daten - StringFilter
|
Filter by GUID_Daten (see type "MonitoringData") |
GUID_MonitoringDaten - StringFilter
|
Filter by GUID_MonitoringDaten (see type "MonitoringData") |
ID_Cloud - NumberFilter
|
Filter by ID_Cloud (see type "MonitoringData") |
ID_Data_1 - NumberFilter
|
Filter by ID_Data_1 (see type "MonitoringData") |
ID_Data_2 - NumberFilter
|
Filter by ID_Data_2 (see type "MonitoringData") |
ID_Data_3 - NumberFilter
|
Filter by ID_Data_3 (see type "MonitoringData") |
ID_Data_4 - NumberFilter
|
Filter by ID_Data_4 (see type "MonitoringData") |
ID_Data_5 - NumberFilter
|
Filter by ID_Data_5 (see type "MonitoringData") |
ID_MonitoringDaten - NumberFilter
|
Filter by ID_MonitoringDaten (see type "MonitoringData") |
ID_Monitoringtyp - NumberFilter
|
Filter by ID_Monitoringtyp (see type "MonitoringData") |
ID_Parameter - NumberFilter
|
Filter by ID_Parameter (see type "MonitoringData") |
ID_Referenz - NumberFilter
|
Filter by ID_Referenz (see type "MonitoringData") |
Wert - StringFilter
|
Filter by Wert (see type "MonitoringData") |
Wert_Long - NumberFilter
|
Filter by Wert_Long (see type "MonitoringData") |
_and - [MonitoringDataFilterInput!]
|
Logical AND operator |
_or - [MonitoringDataFilterInput!]
|
Logical OR operator |
Example
{
"Data_1": StringFilter,
"Data_2": StringFilter,
"Data_3": StringFilter,
"Data_4": StringFilter,
"Date_Changed": StringFilter,
"Date_Create": StringFilter,
"Date_Service": StringFilter,
"Flag_Deleted": BooleanFilter,
"GUID_Daten": StringFilter,
"GUID_MonitoringDaten": StringFilter,
"ID_Cloud": NumberFilter,
"ID_Data_1": NumberFilter,
"ID_Data_2": NumberFilter,
"ID_Data_3": NumberFilter,
"ID_Data_4": NumberFilter,
"ID_Data_5": NumberFilter,
"ID_MonitoringDaten": NumberFilter,
"ID_Monitoringtyp": NumberFilter,
"ID_Parameter": NumberFilter,
"ID_Referenz": NumberFilter,
"Wert": StringFilter,
"Wert_Long": NumberFilter,
"_and": [MonitoringDataFilterInput],
"_or": [MonitoringDataFilterInput]
}
MonitoringDataOrderByInput
Fields
Input Field | Description |
---|---|
Data_1 - SortOrder
|
Sort by Data_1 (see type "MonitoringData") |
Data_2 - SortOrder
|
Sort by Data_2 (see type "MonitoringData") |
Data_3 - SortOrder
|
Sort by Data_3 (see type "MonitoringData") |
Data_4 - SortOrder
|
Sort by Data_4 (see type "MonitoringData") |
Date_Changed - SortOrder
|
Sort by Date_Changed (see type "MonitoringData") |
Date_Create - SortOrder
|
Sort by Date_Create (see type "MonitoringData") |
Date_Service - SortOrder
|
Sort by Date_Service (see type "MonitoringData") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "MonitoringData") |
GUID_Daten - SortOrder
|
Sort by GUID_Daten (see type "MonitoringData") |
GUID_MonitoringDaten - SortOrder
|
Sort by GUID_MonitoringDaten (see type "MonitoringData") |
ID_Cloud - SortOrder
|
Sort by ID_Cloud (see type "MonitoringData") |
ID_Data_1 - SortOrder
|
Sort by ID_Data_1 (see type "MonitoringData") |
ID_Data_2 - SortOrder
|
Sort by ID_Data_2 (see type "MonitoringData") |
ID_Data_3 - SortOrder
|
Sort by ID_Data_3 (see type "MonitoringData") |
ID_Data_4 - SortOrder
|
Sort by ID_Data_4 (see type "MonitoringData") |
ID_Data_5 - SortOrder
|
Sort by ID_Data_5 (see type "MonitoringData") |
ID_MonitoringDaten - SortOrder
|
Sort by ID_MonitoringDaten (see type "MonitoringData") |
ID_Monitoringtyp - SortOrder
|
Sort by ID_Monitoringtyp (see type "MonitoringData") |
ID_Parameter - SortOrder
|
Sort by ID_Parameter (see type "MonitoringData") |
ID_Referenz - SortOrder
|
Sort by ID_Referenz (see type "MonitoringData") |
Wert - SortOrder
|
Sort by Wert (see type "MonitoringData") |
Wert_Long - SortOrder
|
Sort by Wert_Long (see type "MonitoringData") |
Example
{
"Data_1": "asc",
"Data_2": "asc",
"Data_3": "asc",
"Data_4": "asc",
"Date_Changed": "asc",
"Date_Create": "asc",
"Date_Service": "asc",
"Flag_Deleted": "asc",
"GUID_Daten": "asc",
"GUID_MonitoringDaten": "asc",
"ID_Cloud": "asc",
"ID_Data_1": "asc",
"ID_Data_2": "asc",
"ID_Data_3": "asc",
"ID_Data_4": "asc",
"ID_Data_5": "asc",
"ID_MonitoringDaten": "asc",
"ID_Monitoringtyp": "asc",
"ID_Parameter": "asc",
"ID_Referenz": "asc",
"Wert": "asc",
"Wert_Long": "asc"
}
MonitoringParameter
Description
Monitoring parameters
Fields
Field Name | Description |
---|---|
Einheit - String
|
Unit |
Flag_Deleted - Boolean
|
Deleted flag for deprecated monitoring parameters |
Flag_Deprecated - Boolean
|
Deprecated flag for deprecated monitoring parameters |
ID_Art - Float
|
Art ID |
ID_Datentyp - Float
|
Datatype ID |
ID_MonitoringTyp - Int!
|
Monitoring type ID |
ID_Parameter - Int!
|
Monitoring parameter ID |
ID_Sort - Float
|
Sort ID |
ID_Version - Float
|
Current version number |
MonitoringReferences - [MonitoringReference!]!
|
|
Arguments
|
|
MonitoringTyp - String
|
Name of the monitoring type |
MonitoringType - MonitoringType
|
|
Parameter - String
|
Name of the parameter |
Parameter_Info - String
|
Parameter info |
Example
{
"Einheit": "abc123",
"Flag_Deleted": true,
"Flag_Deprecated": false,
"ID_Art": 123.45,
"ID_Datentyp": 987.65,
"ID_MonitoringTyp": 987,
"ID_Parameter": 123,
"ID_Sort": 123.45,
"ID_Version": 987.65,
"MonitoringReferences": [MonitoringReference],
"MonitoringTyp": "abc123",
"MonitoringType": MonitoringType,
"Parameter": "abc123",
"Parameter_Info": "abc123"
}
MonitoringParametersFilterInput
Fields
Input Field | Description |
---|---|
Einheit - StringFilter
|
Filter by Einheit (see type "MonitoringParameter") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "MonitoringParameter") |
Flag_Deprecated - BooleanFilter
|
Filter by Flag_Deprecated (see type "MonitoringParameter") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "MonitoringParameter") |
ID_Art - NumberFilter
|
Filter by ID_Art (see type "MonitoringParameter") |
ID_Datentyp - NumberFilter
|
Filter by ID_Datentyp (see type "MonitoringParameter") |
ID_MonitoringTyp - NumberFilter
|
Filter by ID_MonitoringTyp (see type "MonitoringParameter") |
ID_Parameter - NumberFilter
|
Filter by ID_Parameter (see type "MonitoringParameter") |
ID_Sort - NumberFilter
|
Filter by ID_Sort (see type "MonitoringParameter") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "MonitoringParameter") |
MonitoringTyp - StringFilter
|
Filter by MonitoringTyp (see type "MonitoringParameter") |
Parameter - StringFilter
|
Filter by Parameter (see type "MonitoringParameter") |
Parameter_Info - StringFilter
|
Filter by Parameter_Info (see type "MonitoringParameter") |
_and - [MonitoringParametersFilterInput!]
|
Logical AND operator |
_or - [MonitoringParametersFilterInput!]
|
Logical OR operator |
Example
{
"Einheit": StringFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Deprecated": BooleanFilter,
"Flag_Sync": BooleanFilter,
"ID_Art": NumberFilter,
"ID_Datentyp": NumberFilter,
"ID_MonitoringTyp": NumberFilter,
"ID_Parameter": NumberFilter,
"ID_Sort": NumberFilter,
"ID_Version": NumberFilter,
"MonitoringTyp": StringFilter,
"Parameter": StringFilter,
"Parameter_Info": StringFilter,
"_and": [MonitoringParametersFilterInput],
"_or": [MonitoringParametersFilterInput]
}
MonitoringParametersOrderByInput
Fields
Input Field | Description |
---|---|
Einheit - SortOrder
|
Sort by Einheit (see type "MonitoringParameter") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "MonitoringParameter") |
Flag_Deprecated - SortOrder
|
Sort by Flag_Deprecated (see type "MonitoringParameter") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "MonitoringParameter") |
ID_Art - SortOrder
|
Sort by ID_Art (see type "MonitoringParameter") |
ID_Datentyp - SortOrder
|
Sort by ID_Datentyp (see type "MonitoringParameter") |
ID_MonitoringTyp - SortOrder
|
Sort by ID_MonitoringTyp (see type "MonitoringParameter") |
ID_Parameter - SortOrder
|
Sort by ID_Parameter (see type "MonitoringParameter") |
ID_Sort - SortOrder
|
Sort by ID_Sort (see type "MonitoringParameter") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "MonitoringParameter") |
MonitoringTyp - SortOrder
|
Sort by MonitoringTyp (see type "MonitoringParameter") |
Parameter - SortOrder
|
Sort by Parameter (see type "MonitoringParameter") |
Parameter_Info - SortOrder
|
Sort by Parameter_Info (see type "MonitoringParameter") |
Example
{
"Einheit": "asc",
"Flag_Deleted": "asc",
"Flag_Deprecated": "asc",
"Flag_Sync": "asc",
"ID_Art": "asc",
"ID_Datentyp": "asc",
"ID_MonitoringTyp": "asc",
"ID_Parameter": "asc",
"ID_Sort": "asc",
"ID_Version": "asc",
"MonitoringTyp": "asc",
"Parameter": "asc",
"Parameter_Info": "asc"
}
MonitoringReference
Description
Monitoring references
Fields
Field Name | Description |
---|---|
Beschreibung - String
|
Description |
Flag_Deleted - Boolean
|
Deleted flag for deleted monitoring references |
Flag_Deprecated - Boolean
|
Deprecated flag for deprecated monitoring references |
ID_Parameter - Float
|
Monitoring parameter ID |
ID_Referenz - Int!
|
Monitoring reference ID |
ID_Sort - Float
|
Sort ID |
ID_Version - Float
|
Version ID |
MonitoringParameter - MonitoringParameter
|
|
Parameter - String
|
Name of the monitoring parameter |
Referenz - String
|
Name of the monitoring reference |
Example
{
"Beschreibung": "abc123",
"Flag_Deleted": true,
"Flag_Deprecated": true,
"ID_Parameter": 123.45,
"ID_Referenz": 123,
"ID_Sort": 123.45,
"ID_Version": 123.45,
"MonitoringParameter": MonitoringParameter,
"Parameter": "xyz789",
"Referenz": "abc123"
}
MonitoringReferencesFilterInput
Fields
Input Field | Description |
---|---|
Beschreibung - StringFilter
|
Filter by Beschreibung (see type "MonitoringReference") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "MonitoringReference") |
Flag_Deprecated - BooleanFilter
|
Filter by Flag_Deprecated (see type "MonitoringReference") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "MonitoringReference") |
ID_Parameter - NumberFilter
|
Filter by ID_Parameter (see type "MonitoringReference") |
ID_Referenz - NumberFilter
|
Filter by ID_Referenz (see type "MonitoringReference") |
ID_Sort - NumberFilter
|
Filter by ID_Sort (see type "MonitoringReference") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "MonitoringReference") |
Parameter - StringFilter
|
Filter by Parameter (see type "MonitoringReference") |
Referenz - StringFilter
|
Filter by Referenz (see type "MonitoringReference") |
_and - [MonitoringReferencesFilterInput!]
|
Logical AND operator |
_or - [MonitoringReferencesFilterInput!]
|
Logical OR operator |
Example
{
"Beschreibung": StringFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Deprecated": BooleanFilter,
"Flag_Sync": BooleanFilter,
"ID_Parameter": NumberFilter,
"ID_Referenz": NumberFilter,
"ID_Sort": NumberFilter,
"ID_Version": NumberFilter,
"Parameter": StringFilter,
"Referenz": StringFilter,
"_and": [MonitoringReferencesFilterInput],
"_or": [MonitoringReferencesFilterInput]
}
MonitoringReferencesOrderByInput
Fields
Input Field | Description |
---|---|
Beschreibung - SortOrder
|
Sort by Beschreibung (see type "MonitoringReference") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "MonitoringReference") |
Flag_Deprecated - SortOrder
|
Sort by Flag_Deprecated (see type "MonitoringReference") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "MonitoringReference") |
ID_Parameter - SortOrder
|
Sort by ID_Parameter (see type "MonitoringReference") |
ID_Referenz - SortOrder
|
Sort by ID_Referenz (see type "MonitoringReference") |
ID_Sort - SortOrder
|
Sort by ID_Sort (see type "MonitoringReference") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "MonitoringReference") |
Parameter - SortOrder
|
Sort by Parameter (see type "MonitoringReference") |
Referenz - SortOrder
|
Sort by Referenz (see type "MonitoringReference") |
Example
{
"Beschreibung": "asc",
"Flag_Deleted": "asc",
"Flag_Deprecated": "asc",
"Flag_Sync": "asc",
"ID_Parameter": "asc",
"ID_Referenz": "asc",
"ID_Sort": "asc",
"ID_Version": "asc",
"Parameter": "asc",
"Referenz": "asc"
}
MonitoringType
Description
Monitoring types
Fields
Field Name | Description |
---|---|
Flag_Deleted - Boolean
|
Deleted flag for deprecated monitoring types |
ID_MonitoringTyp - Int!
|
Monitoring type ID |
ID_Version - Float
|
Current version number |
MonitoringParameters - [MonitoringParameter!]!
|
|
Arguments
|
|
MonitoringTyp - String
|
Name of the monitoring type |
Example
{
"Flag_Deleted": false,
"ID_MonitoringTyp": 987,
"ID_Version": 987.65,
"MonitoringParameters": [MonitoringParameter],
"MonitoringTyp": "xyz789"
}
MonitoringTypesFilterInput
Fields
Input Field | Description |
---|---|
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "MonitoringType") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "MonitoringType") |
ID_MonitoringTyp - NumberFilter
|
Filter by ID_MonitoringTyp (see type "MonitoringType") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "MonitoringType") |
MonitoringTyp - StringFilter
|
Filter by MonitoringTyp (see type "MonitoringType") |
_and - [MonitoringTypesFilterInput!]
|
Logical AND operator |
_or - [MonitoringTypesFilterInput!]
|
Logical OR operator |
Example
{
"Flag_Deleted": BooleanFilter,
"Flag_Sync": BooleanFilter,
"ID_MonitoringTyp": NumberFilter,
"ID_Version": NumberFilter,
"MonitoringTyp": StringFilter,
"_and": [MonitoringTypesFilterInput],
"_or": [MonitoringTypesFilterInput]
}
MonitoringTypesOrderByInput
Fields
Input Field | Description |
---|---|
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "MonitoringType") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "MonitoringType") |
ID_MonitoringTyp - SortOrder
|
Sort by ID_MonitoringTyp (see type "MonitoringType") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "MonitoringType") |
MonitoringTyp - SortOrder
|
Sort by MonitoringTyp (see type "MonitoringType") |
Example
{
"Flag_Deleted": "asc",
"Flag_Sync": "asc",
"ID_MonitoringTyp": "asc",
"ID_Version": "asc",
"MonitoringTyp": "asc"
}
NumberFilter
Observation
Description
Observations
Fields
Field Name | Description |
---|---|
Allochthonie - Boolean
|
Is the species allochthonous (not native to the site)? |
Anzahl - String
|
Number of individuals |
AnzahlAdult - Int
|
Number of adult individuals |
AnzahlBluehend - Int
|
Number of flowering individuals (for plants) |
AnzahlGeschAdult - Int
|
|
AnzahlGeschGesamt - Int
|
|
AnzahlGeschJuvenil - Int
|
|
AnzahlJuvenil - Int
|
Number of juvenile individuals |
AnzahlMaennl - Int
|
Number of masculine individuals |
AnzahlNichtBluehend - Int
|
Number of non-flowering individuals (for plants) |
AnzahlTFAdult - Int
|
|
AnzahlTFJuvenil - Int
|
|
AnzahlWFMaennl - Int
|
|
AnzahlWFWeibl - Int
|
|
AnzahlWeibl - Int
|
Number of feminine individuals |
Anzahl_1 - Int
|
|
Anzahl_2 - Int
|
|
Anzahl_3 - Int
|
|
Anzahl_4 - Int
|
|
Anzahl_5 - Int
|
|
Anzahl_6 - Int
|
|
Anzahl_7 - Int
|
|
Anzahl_8 - Int
|
|
Anzahl_9 - Int
|
|
Anzahl_10 - Int
|
|
Anzahl_11 - Int
|
|
Anzahl_12 - Int
|
|
Anzahl_Max - Int
|
|
Anzahl_Min - Int
|
|
Bemerkung - String
|
Observation comment |
Biotop - String
|
|
Date_Changed - DateTime
|
|
Date_Create - DateTime
|
|
Date_Service - DateTime
|
|
Datum - DateTime
|
Observation date |
Datum_GeprueftAm - DateTime
|
|
Details - String
|
Observation details |
Erfassungsname - String
|
|
Flag - Boolean
|
|
Flag_Aggregiert - Boolean
|
|
Flag_Basisort - Boolean
|
|
Flag_Beringung - Boolean
|
|
Flag_Deleted - Boolean
|
|
Flag_Export - Boolean
|
|
Flag_Filter - Boolean
|
|
Flag_Intern - Boolean
|
|
Flag_Trash - Boolean
|
|
GUID_Atlas - String
|
|
GUID_Beobachter - String
|
|
GUID_Bestimmer - String
|
|
GUID_Daten - String!
|
Observation GUID |
GUID_Datenbankherkunft - String
|
|
GUID_GeprueftVon - String
|
|
GUID_Group - String
|
|
GUID_Herkunft - String
|
|
GUID_Import - String
|
|
GUID_Kasten - String
|
|
GUID_Ort - String
|
|
GUID_Sammlung - String
|
|
GUID_User - String!
|
|
Geprueft_Info - String
|
|
Hoehe - Int
|
|
ID_AddIn - Int
|
|
ID_Alter - Int
|
|
ID_Art - Int
|
Species ID |
ID_Art_Negativnachweis - Int
|
|
ID_Art_NichtKartiert - Int
|
|
ID_Besatz - Int
|
|
ID_Cloud - Int
|
|
ID_Daten - Int!
|
Observation ID |
ID_Deckungsgrad - Int
|
|
ID_Einheit - Int
|
Unit ID |
ID_FundTyp - Int
|
|
ID_GenauigkeitAnzahl - Int
|
|
ID_GenauigkeitDatum - Int
|
|
ID_Habitat - Int
|
|
ID_Herausgabegenauigkeit - Int
|
|
ID_Kategorie - Int!
|
Taxon category ID |
ID_Material - Int
|
|
ID_Nachweissicherheit - Int
|
|
ID_Nachweistyp - Int
|
Identification method ID |
ID_Qualitaet - Int
|
|
ID_Quartiertyp - Int
|
|
ID_Reproduktion - Int
|
Reproduction ID |
ID_Revierstatus - Int
|
|
ID_Schicht - Int
|
|
ID_Stadium - Int
|
|
ID_Substrat - Int
|
|
ID_Substratzustand - Int
|
|
ID_Toleranz - Int
|
Tolerance ID |
ID_Traegerbaum - Int
|
|
ID_Verhalten - Int
|
Behaviour ID |
ID_Verwendung - Int
|
|
ID_Wuchsstelle - Int
|
|
Jahr - Int
|
Year of the observation date |
LAEACellCode - Int
|
|
LAEARaster - String
|
|
Len5Finger - Float
|
|
LenDaumen - Float
|
|
LenUnterarm - Float
|
|
MTB - Int
|
Map quadrant ID (TK25) |
MTBQ - Int
|
Map sub-quadrant ID (TK25) |
Masse - Float
|
|
Masse_kg_gesamt - Float
|
|
Merkmal - String
|
|
Monat - Int
|
Month of the observation date |
MonitoringDatas - [MonitoringData!]!
|
|
Arguments
|
|
ObservationAdditionalData - ObservationAdditionalData
|
|
ObservationDetails - [ObservationDetail!]!
|
|
Arguments
|
|
Ortsbezeichnung - String
|
General site name |
Quelle - String
|
|
Raster - String
|
|
RefID - Int
|
|
ReferenzNr - String
|
|
Region - String
|
|
Ringnummer - String
|
|
RingnummerText - String
|
|
Ringserie - String
|
|
Vector_Grad - Int
|
|
Vector_Meter - Int
|
|
Zentrale - String
|
|
sDBHerkunft - String
|
|
xWGS84 - Float
|
|
yWGS84 - Float
|
Example
{
"Allochthonie": false,
"Anzahl": "abc123",
"AnzahlAdult": 123,
"AnzahlBluehend": 123,
"AnzahlGeschAdult": 123,
"AnzahlGeschGesamt": 987,
"AnzahlGeschJuvenil": 987,
"AnzahlJuvenil": 987,
"AnzahlMaennl": 123,
"AnzahlNichtBluehend": 123,
"AnzahlTFAdult": 123,
"AnzahlTFJuvenil": 987,
"AnzahlWFMaennl": 987,
"AnzahlWFWeibl": 123,
"AnzahlWeibl": 123,
"Anzahl_1": 987,
"Anzahl_2": 987,
"Anzahl_3": 123,
"Anzahl_4": 987,
"Anzahl_5": 987,
"Anzahl_6": 987,
"Anzahl_7": 987,
"Anzahl_8": 987,
"Anzahl_9": 123,
"Anzahl_10": 987,
"Anzahl_11": 987,
"Anzahl_12": 987,
"Anzahl_Max": 123,
"Anzahl_Min": 123,
"Bemerkung": "xyz789",
"Biotop": "abc123",
"Date_Changed": "2007-12-03T10:15:30Z",
"Date_Create": "2007-12-03T10:15:30Z",
"Date_Service": "2007-12-03T10:15:30Z",
"Datum": "2007-12-03T10:15:30Z",
"Datum_GeprueftAm": "2007-12-03T10:15:30Z",
"Details": "abc123",
"Erfassungsname": "abc123",
"Flag": true,
"Flag_Aggregiert": true,
"Flag_Basisort": false,
"Flag_Beringung": true,
"Flag_Deleted": false,
"Flag_Export": true,
"Flag_Filter": false,
"Flag_Intern": false,
"Flag_Trash": true,
"GUID_Atlas": "abc123",
"GUID_Beobachter": "abc123",
"GUID_Bestimmer": "xyz789",
"GUID_Daten": "abc123",
"GUID_Datenbankherkunft": "xyz789",
"GUID_GeprueftVon": "xyz789",
"GUID_Group": "abc123",
"GUID_Herkunft": "abc123",
"GUID_Import": "abc123",
"GUID_Kasten": "xyz789",
"GUID_Ort": "xyz789",
"GUID_Sammlung": "abc123",
"GUID_User": "xyz789",
"Geprueft_Info": "xyz789",
"Hoehe": 987,
"ID_AddIn": 987,
"ID_Alter": 987,
"ID_Art": 123,
"ID_Art_Negativnachweis": 123,
"ID_Art_NichtKartiert": 123,
"ID_Besatz": 987,
"ID_Cloud": 987,
"ID_Daten": 123,
"ID_Deckungsgrad": 123,
"ID_Einheit": 123,
"ID_FundTyp": 123,
"ID_GenauigkeitAnzahl": 987,
"ID_GenauigkeitDatum": 123,
"ID_Habitat": 123,
"ID_Herausgabegenauigkeit": 987,
"ID_Kategorie": 987,
"ID_Material": 987,
"ID_Nachweissicherheit": 123,
"ID_Nachweistyp": 987,
"ID_Qualitaet": 987,
"ID_Quartiertyp": 987,
"ID_Reproduktion": 987,
"ID_Revierstatus": 987,
"ID_Schicht": 987,
"ID_Stadium": 987,
"ID_Substrat": 987,
"ID_Substratzustand": 987,
"ID_Toleranz": 987,
"ID_Traegerbaum": 987,
"ID_Verhalten": 123,
"ID_Verwendung": 123,
"ID_Wuchsstelle": 123,
"Jahr": 123,
"LAEACellCode": 123,
"LAEARaster": "abc123",
"Len5Finger": 987.65,
"LenDaumen": 123.45,
"LenUnterarm": 123.45,
"MTB": 987,
"MTBQ": 123,
"Masse": 123.45,
"Masse_kg_gesamt": 987.65,
"Merkmal": "abc123",
"Monat": 123,
"MonitoringDatas": [MonitoringData],
"ObservationAdditionalData": ObservationAdditionalData,
"ObservationDetails": [ObservationDetail],
"Ortsbezeichnung": "xyz789",
"Quelle": "abc123",
"Raster": "abc123",
"RefID": 987,
"ReferenzNr": "abc123",
"Region": "xyz789",
"Ringnummer": "abc123",
"RingnummerText": "xyz789",
"Ringserie": "abc123",
"Vector_Grad": 123,
"Vector_Meter": 123,
"Zentrale": "xyz789",
"sDBHerkunft": "xyz789",
"xWGS84": 123.45,
"yWGS84": 987.65
}
ObservationAdditionalData
Description
ObservationAdditionalData
Fields
Field Name | Description |
---|---|
Aktenzeichen - String
|
|
AnzahlUnberingt - Float
|
|
Brutnummer - Float
|
|
DatumWiedervorlage - DateTime
|
|
Flag_BatBaseDataValid - Boolean
|
|
Flag_Benachrichtigt - Boolean
|
|
Flag_CoordsLocked - Boolean
|
|
Flag_DataValid - Boolean
|
|
Flag_DruckstatusValid - Boolean
|
|
Flag_KorrekturDataValid - Boolean
|
|
Flag_Publiziert - Boolean
|
|
Flugrichtung - String
|
|
Flugstrecke - Float
|
|
Formular_ID - String
|
|
GUID_Daten - String!
|
Observation GUID |
GUID_Daten_Copy - String
|
|
GUID_Daten_Original - String
|
|
Geburt - DateTime
|
Date of birth |
ID_AktuellerZustand - Float
|
|
ID_Art_Wirtsvogel - Float
|
|
ID_BStatus_1 - Float
|
|
ID_BStatus_2 - Float
|
|
ID_BStatus_3 - Float
|
|
ID_BStatus_4 - Float
|
|
ID_Bearbeitungsstatus - Float
|
|
ID_Biotop - Float
|
|
ID_Cloud - Float!
|
|
ID_DatenZusatz - Int!
|
Additional data ID |
ID_Fundstatus - Float
|
|
ID_Fundursache - Float
|
|
ID_Fundzustand - Float
|
|
ID_Geschlecht - Float
|
|
ID_Koerperseite - Float
|
|
ID_Nachweissicherheit_Erst - Float
|
|
ID_UnklareMeldung - Float
|
|
ID_VerifikationRing - Float
|
|
ID_Verletzung - Float
|
|
ID_Vorgang - Float
|
|
Lebensalter - String
|
Age |
LenFluegel - Float
|
|
LenTeilfeder - Float
|
|
RegionDet - String
|
|
Tagesdifferenz - Float
|
|
WeitereBeobachter - String
|
|
Zeitdifferenz - String
|
|
wwFlugrichtung - String
|
|
wwFlugstrecke - Float
|
|
wwTagesdifferenz - Float
|
|
wwZeitdifferenz - String
|
Example
{
"Aktenzeichen": "abc123",
"AnzahlUnberingt": 123.45,
"Brutnummer": 123.45,
"DatumWiedervorlage": "2007-12-03T10:15:30Z",
"Flag_BatBaseDataValid": true,
"Flag_Benachrichtigt": true,
"Flag_CoordsLocked": true,
"Flag_DataValid": true,
"Flag_DruckstatusValid": false,
"Flag_KorrekturDataValid": false,
"Flag_Publiziert": true,
"Flugrichtung": "xyz789",
"Flugstrecke": 123.45,
"Formular_ID": "abc123",
"GUID_Daten": "abc123",
"GUID_Daten_Copy": "xyz789",
"GUID_Daten_Original": "xyz789",
"Geburt": "2007-12-03T10:15:30Z",
"ID_AktuellerZustand": 123.45,
"ID_Art_Wirtsvogel": 123.45,
"ID_BStatus_1": 987.65,
"ID_BStatus_2": 123.45,
"ID_BStatus_3": 123.45,
"ID_BStatus_4": 987.65,
"ID_Bearbeitungsstatus": 987.65,
"ID_Biotop": 987.65,
"ID_Cloud": 123.45,
"ID_DatenZusatz": 123,
"ID_Fundstatus": 987.65,
"ID_Fundursache": 123.45,
"ID_Fundzustand": 123.45,
"ID_Geschlecht": 123.45,
"ID_Koerperseite": 123.45,
"ID_Nachweissicherheit_Erst": 123.45,
"ID_UnklareMeldung": 987.65,
"ID_VerifikationRing": 987.65,
"ID_Verletzung": 123.45,
"ID_Vorgang": 123.45,
"Lebensalter": "xyz789",
"LenFluegel": 123.45,
"LenTeilfeder": 123.45,
"RegionDet": "abc123",
"Tagesdifferenz": 123.45,
"WeitereBeobachter": "abc123",
"Zeitdifferenz": "xyz789",
"wwFlugrichtung": "xyz789",
"wwFlugstrecke": 123.45,
"wwTagesdifferenz": 987.65,
"wwZeitdifferenz": "abc123"
}
ObservationDetail
Description
Observation details
Fields
Field Name | Description |
---|---|
GUID_Daten - String!
|
Observation GUID |
GUID_Details - String!
|
Observation detail GUID |
ID_Cloud - Int!
|
Cloud ID |
ID_Details - Int!
|
Observation detail ID |
ID_UF - Int!
|
User Field ID (0 = custom observation detail) |
Observation - Observation
|
|
UserField - UserField
|
|
UserItem - String
|
Custom observation detail name (when ID_UF = 0) |
Wert - String!
|
Observation detail value |
Example
{
"GUID_Daten": "xyz789",
"GUID_Details": "xyz789",
"ID_Cloud": 123,
"ID_Details": 123,
"ID_UF": 987,
"Observation": Observation,
"UserField": UserField,
"UserItem": "xyz789",
"Wert": "abc123"
}
ObservationDetailsFilterInput
Fields
Input Field | Description |
---|---|
GUID_Daten - StringFilter
|
Filter by GUID_Daten (see type "ObservationDetail") |
GUID_Details - StringFilter
|
Filter by GUID_Details (see type "ObservationDetail") |
ID_Cloud - NumberFilter
|
Filter by ID_Cloud (see type "ObservationDetail") |
ID_Details - NumberFilter
|
Filter by ID_Details (see type "ObservationDetail") |
ID_UF - NumberFilter
|
Filter by ID_UF (see type "ObservationDetail") |
UserItem - StringFilter
|
Filter by UserItem (see type "ObservationDetail") |
Wert - StringFilter
|
Filter by Wert (see type "ObservationDetail") |
_and - [ObservationDetailsFilterInput!]
|
Logical AND operator |
_or - [ObservationDetailsFilterInput!]
|
Logical OR operator |
Example
{
"GUID_Daten": StringFilter,
"GUID_Details": StringFilter,
"ID_Cloud": NumberFilter,
"ID_Details": NumberFilter,
"ID_UF": NumberFilter,
"UserItem": StringFilter,
"Wert": StringFilter,
"_and": [ObservationDetailsFilterInput],
"_or": [ObservationDetailsFilterInput]
}
ObservationDetailsOrderByInput
Fields
Input Field | Description |
---|---|
GUID_Daten - SortOrder
|
Sort by GUID_Daten (see type "ObservationDetail") |
GUID_Details - SortOrder
|
Sort by GUID_Details (see type "ObservationDetail") |
ID_Cloud - SortOrder
|
Sort by ID_Cloud (see type "ObservationDetail") |
ID_Details - SortOrder
|
Sort by ID_Details (see type "ObservationDetail") |
ID_UF - SortOrder
|
Sort by ID_UF (see type "ObservationDetail") |
UserItem - SortOrder
|
Sort by UserItem (see type "ObservationDetail") |
Wert - SortOrder
|
Sort by Wert (see type "ObservationDetail") |
Example
{
"GUID_Daten": "asc",
"GUID_Details": "asc",
"ID_Cloud": "asc",
"ID_Details": "asc",
"ID_UF": "asc",
"UserItem": "asc",
"Wert": "asc"
}
ObservationsFilterInput
Fields
Input Field | Description |
---|---|
Allochthonie - BooleanFilter
|
Filter by Allochthonie (see type "Observation") |
Anzahl - StringFilter
|
Filter by Anzahl (see type "Observation") |
AnzahlAdult - NumberFilter
|
Filter by AnzahlAdult (see type "Observation") |
AnzahlBluehend - NumberFilter
|
Filter by AnzahlBluehend (see type "Observation") |
AnzahlGeschAdult - NumberFilter
|
Filter by AnzahlGeschAdult (see type "Observation") |
AnzahlGeschGesamt - NumberFilter
|
Filter by AnzahlGeschGesamt (see type "Observation") |
AnzahlGeschJuvenil - NumberFilter
|
Filter by AnzahlGeschJuvenil (see type "Observation") |
AnzahlJuvenil - NumberFilter
|
Filter by AnzahlJuvenil (see type "Observation") |
AnzahlMaennl - NumberFilter
|
Filter by AnzahlMaennl (see type "Observation") |
AnzahlNichtBluehend - NumberFilter
|
Filter by AnzahlNichtBluehend (see type "Observation") |
AnzahlTFAdult - NumberFilter
|
Filter by AnzahlTFAdult (see type "Observation") |
AnzahlTFJuvenil - NumberFilter
|
Filter by AnzahlTFJuvenil (see type "Observation") |
AnzahlWFMaennl - NumberFilter
|
Filter by AnzahlWFMaennl (see type "Observation") |
AnzahlWFWeibl - NumberFilter
|
Filter by AnzahlWFWeibl (see type "Observation") |
AnzahlWeibl - NumberFilter
|
Filter by AnzahlWeibl (see type "Observation") |
Anzahl_1 - NumberFilter
|
Filter by Anzahl_1 (see type "Observation") |
Anzahl_2 - NumberFilter
|
Filter by Anzahl_2 (see type "Observation") |
Anzahl_3 - NumberFilter
|
Filter by Anzahl_3 (see type "Observation") |
Anzahl_4 - NumberFilter
|
Filter by Anzahl_4 (see type "Observation") |
Anzahl_5 - NumberFilter
|
Filter by Anzahl_5 (see type "Observation") |
Anzahl_6 - NumberFilter
|
Filter by Anzahl_6 (see type "Observation") |
Anzahl_7 - NumberFilter
|
Filter by Anzahl_7 (see type "Observation") |
Anzahl_8 - NumberFilter
|
Filter by Anzahl_8 (see type "Observation") |
Anzahl_9 - NumberFilter
|
Filter by Anzahl_9 (see type "Observation") |
Anzahl_10 - NumberFilter
|
Filter by Anzahl_10 (see type "Observation") |
Anzahl_11 - NumberFilter
|
Filter by Anzahl_11 (see type "Observation") |
Anzahl_12 - NumberFilter
|
Filter by Anzahl_12 (see type "Observation") |
Anzahl_Max - NumberFilter
|
Filter by Anzahl_Max (see type "Observation") |
Anzahl_Min - NumberFilter
|
Filter by Anzahl_Min (see type "Observation") |
Bemerkung - StringFilter
|
Filter by Bemerkung (see type "Observation") |
Biotop - StringFilter
|
Filter by Biotop (see type "Observation") |
Date_Changed - StringFilter
|
Filter by Date_Changed (see type "Observation") |
Date_Create - StringFilter
|
Filter by Date_Create (see type "Observation") |
Date_Service - StringFilter
|
Filter by Date_Service (see type "Observation") |
Datum - StringFilter
|
Filter by Datum (see type "Observation") |
Datum_GeprueftAm - StringFilter
|
Filter by Datum_GeprueftAm (see type "Observation") |
Details - StringFilter
|
Filter by Details (see type "Observation") |
Erfassungsname - StringFilter
|
Filter by Erfassungsname (see type "Observation") |
Flag - BooleanFilter
|
Filter by Flag (see type "Observation") |
Flag_Aggregiert - BooleanFilter
|
Filter by Flag_Aggregiert (see type "Observation") |
Flag_Basisort - BooleanFilter
|
Filter by Flag_Basisort (see type "Observation") |
Flag_Beringung - BooleanFilter
|
Filter by Flag_Beringung (see type "Observation") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "Observation") |
Flag_Export - BooleanFilter
|
Filter by Flag_Export (see type "Observation") |
Flag_Filter - BooleanFilter
|
Filter by Flag_Filter (see type "Observation") |
Flag_Intern - BooleanFilter
|
Filter by Flag_Intern (see type "Observation") |
Flag_Trash - BooleanFilter
|
Filter by Flag_Trash (see type "Observation") |
GUID_Atlas - StringFilter
|
Filter by GUID_Atlas (see type "Observation") |
GUID_Beobachter - StringFilter
|
Filter by GUID_Beobachter (see type "Observation") |
GUID_Bestimmer - StringFilter
|
Filter by GUID_Bestimmer (see type "Observation") |
GUID_Daten - StringFilter
|
Filter by GUID_Daten (see type "Observation") |
GUID_Datenbankherkunft - StringFilter
|
Filter by GUID_Datenbankherkunft (see type "Observation") |
GUID_GeprueftVon - StringFilter
|
Filter by GUID_GeprueftVon (see type "Observation") |
GUID_Group - StringFilter
|
Filter by GUID_Group (see type "Observation") |
GUID_Herkunft - StringFilter
|
Filter by GUID_Herkunft (see type "Observation") |
GUID_Import - StringFilter
|
Filter by GUID_Import (see type "Observation") |
GUID_Kasten - StringFilter
|
Filter by GUID_Kasten (see type "Observation") |
GUID_Ort - StringFilter
|
Filter by GUID_Ort (see type "Observation") |
GUID_Sammlung - StringFilter
|
Filter by GUID_Sammlung (see type "Observation") |
GUID_User - StringFilter
|
Filter by GUID_User (see type "Observation") |
Geprueft_Info - StringFilter
|
Filter by Geprueft_Info (see type "Observation") |
Hoehe - NumberFilter
|
Filter by Hoehe (see type "Observation") |
ID_AddIn - NumberFilter
|
Filter by ID_AddIn (see type "Observation") |
ID_Alter - NumberFilter
|
Filter by ID_Alter (see type "Observation") |
ID_Art - NumberFilter
|
Filter by ID_Art (see type "Observation") |
ID_Art_Negativnachweis - NumberFilter
|
Filter by ID_Art_Negativnachweis (see type "Observation") |
ID_Art_NichtKartiert - NumberFilter
|
Filter by ID_Art_NichtKartiert (see type "Observation") |
ID_Besatz - NumberFilter
|
Filter by ID_Besatz (see type "Observation") |
ID_Cloud - NumberFilter
|
Filter by ID_Cloud (see type "Observation") |
ID_Daten - NumberFilter
|
Filter by ID_Daten (see type "Observation") |
ID_Deckungsgrad - NumberFilter
|
Filter by ID_Deckungsgrad (see type "Observation") |
ID_Einheit - NumberFilter
|
Filter by ID_Einheit (see type "Observation") |
ID_FundTyp - NumberFilter
|
Filter by ID_FundTyp (see type "Observation") |
ID_GenauigkeitAnzahl - NumberFilter
|
Filter by ID_GenauigkeitAnzahl (see type "Observation") |
ID_GenauigkeitDatum - NumberFilter
|
Filter by ID_GenauigkeitDatum (see type "Observation") |
ID_Habitat - NumberFilter
|
Filter by ID_Habitat (see type "Observation") |
ID_Herausgabegenauigkeit - NumberFilter
|
Filter by ID_Herausgabegenauigkeit (see type "Observation") |
ID_Kategorie - NumberFilter
|
Filter by ID_Kategorie (see type "Observation") |
ID_Material - NumberFilter
|
Filter by ID_Material (see type "Observation") |
ID_Nachweissicherheit - NumberFilter
|
Filter by ID_Nachweissicherheit (see type "Observation") |
ID_Nachweistyp - NumberFilter
|
Filter by ID_Nachweistyp (see type "Observation") |
ID_Qualitaet - NumberFilter
|
Filter by ID_Qualitaet (see type "Observation") |
ID_Quartiertyp - NumberFilter
|
Filter by ID_Quartiertyp (see type "Observation") |
ID_Reproduktion - NumberFilter
|
Filter by ID_Reproduktion (see type "Observation") |
ID_Revierstatus - NumberFilter
|
Filter by ID_Revierstatus (see type "Observation") |
ID_Schicht - NumberFilter
|
Filter by ID_Schicht (see type "Observation") |
ID_Stadium - NumberFilter
|
Filter by ID_Stadium (see type "Observation") |
ID_Substrat - NumberFilter
|
Filter by ID_Substrat (see type "Observation") |
ID_Substratzustand - NumberFilter
|
Filter by ID_Substratzustand (see type "Observation") |
ID_Toleranz - NumberFilter
|
Filter by ID_Toleranz (see type "Observation") |
ID_Traegerbaum - NumberFilter
|
Filter by ID_Traegerbaum (see type "Observation") |
ID_Verhalten - NumberFilter
|
Filter by ID_Verhalten (see type "Observation") |
ID_Verwendung - NumberFilter
|
Filter by ID_Verwendung (see type "Observation") |
ID_Wuchsstelle - NumberFilter
|
Filter by ID_Wuchsstelle (see type "Observation") |
Jahr - NumberFilter
|
Filter by Jahr (see type "Observation") |
LAEACellCode - NumberFilter
|
Filter by LAEACellCode (see type "Observation") |
LAEARaster - StringFilter
|
Filter by LAEARaster (see type "Observation") |
Len5Finger - NumberFilter
|
Filter by Len5Finger (see type "Observation") |
LenDaumen - NumberFilter
|
Filter by LenDaumen (see type "Observation") |
LenUnterarm - NumberFilter
|
Filter by LenUnterarm (see type "Observation") |
MTB - NumberFilter
|
Filter by MTB (see type "Observation") |
MTBQ - NumberFilter
|
Filter by MTBQ (see type "Observation") |
Masse - NumberFilter
|
Filter by Masse (see type "Observation") |
Masse_kg_gesamt - NumberFilter
|
Filter by Masse_kg_gesamt (see type "Observation") |
Merkmal - StringFilter
|
Filter by Merkmal (see type "Observation") |
Monat - NumberFilter
|
Filter by Monat (see type "Observation") |
Ortsbezeichnung - StringFilter
|
Filter by Ortsbezeichnung (see type "Observation") |
Quelle - StringFilter
|
Filter by Quelle (see type "Observation") |
Raster - StringFilter
|
Filter by Raster (see type "Observation") |
RefID - NumberFilter
|
Filter by RefID (see type "Observation") |
ReferenzNr - StringFilter
|
Filter by ReferenzNr (see type "Observation") |
Region - StringFilter
|
Filter by Region (see type "Observation") |
Ringnummer - StringFilter
|
Filter by Ringnummer (see type "Observation") |
RingnummerText - StringFilter
|
Filter by RingnummerText (see type "Observation") |
Ringserie - StringFilter
|
Filter by Ringserie (see type "Observation") |
Vector_Grad - NumberFilter
|
Filter by Vector_Grad (see type "Observation") |
Vector_Meter - NumberFilter
|
Filter by Vector_Meter (see type "Observation") |
Zentrale - StringFilter
|
Filter by Zentrale (see type "Observation") |
_and - [ObservationsFilterInput!]
|
Logical AND operator |
_or - [ObservationsFilterInput!]
|
Logical OR operator |
sDBHerkunft - StringFilter
|
Filter by sDBHerkunft (see type "Observation") |
xWGS84 - NumberFilter
|
Filter by xWGS84 (see type "Observation") |
yWGS84 - NumberFilter
|
Filter by yWGS84 (see type "Observation") |
Example
{
"Allochthonie": BooleanFilter,
"Anzahl": StringFilter,
"AnzahlAdult": NumberFilter,
"AnzahlBluehend": NumberFilter,
"AnzahlGeschAdult": NumberFilter,
"AnzahlGeschGesamt": NumberFilter,
"AnzahlGeschJuvenil": NumberFilter,
"AnzahlJuvenil": NumberFilter,
"AnzahlMaennl": NumberFilter,
"AnzahlNichtBluehend": NumberFilter,
"AnzahlTFAdult": NumberFilter,
"AnzahlTFJuvenil": NumberFilter,
"AnzahlWFMaennl": NumberFilter,
"AnzahlWFWeibl": NumberFilter,
"AnzahlWeibl": NumberFilter,
"Anzahl_1": NumberFilter,
"Anzahl_2": NumberFilter,
"Anzahl_3": NumberFilter,
"Anzahl_4": NumberFilter,
"Anzahl_5": NumberFilter,
"Anzahl_6": NumberFilter,
"Anzahl_7": NumberFilter,
"Anzahl_8": NumberFilter,
"Anzahl_9": NumberFilter,
"Anzahl_10": NumberFilter,
"Anzahl_11": NumberFilter,
"Anzahl_12": NumberFilter,
"Anzahl_Max": NumberFilter,
"Anzahl_Min": NumberFilter,
"Bemerkung": StringFilter,
"Biotop": StringFilter,
"Date_Changed": StringFilter,
"Date_Create": StringFilter,
"Date_Service": StringFilter,
"Datum": StringFilter,
"Datum_GeprueftAm": StringFilter,
"Details": StringFilter,
"Erfassungsname": StringFilter,
"Flag": BooleanFilter,
"Flag_Aggregiert": BooleanFilter,
"Flag_Basisort": BooleanFilter,
"Flag_Beringung": BooleanFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Export": BooleanFilter,
"Flag_Filter": BooleanFilter,
"Flag_Intern": BooleanFilter,
"Flag_Trash": BooleanFilter,
"GUID_Atlas": StringFilter,
"GUID_Beobachter": StringFilter,
"GUID_Bestimmer": StringFilter,
"GUID_Daten": StringFilter,
"GUID_Datenbankherkunft": StringFilter,
"GUID_GeprueftVon": StringFilter,
"GUID_Group": StringFilter,
"GUID_Herkunft": StringFilter,
"GUID_Import": StringFilter,
"GUID_Kasten": StringFilter,
"GUID_Ort": StringFilter,
"GUID_Sammlung": StringFilter,
"GUID_User": StringFilter,
"Geprueft_Info": StringFilter,
"Hoehe": NumberFilter,
"ID_AddIn": NumberFilter,
"ID_Alter": NumberFilter,
"ID_Art": NumberFilter,
"ID_Art_Negativnachweis": NumberFilter,
"ID_Art_NichtKartiert": NumberFilter,
"ID_Besatz": NumberFilter,
"ID_Cloud": NumberFilter,
"ID_Daten": NumberFilter,
"ID_Deckungsgrad": NumberFilter,
"ID_Einheit": NumberFilter,
"ID_FundTyp": NumberFilter,
"ID_GenauigkeitAnzahl": NumberFilter,
"ID_GenauigkeitDatum": NumberFilter,
"ID_Habitat": NumberFilter,
"ID_Herausgabegenauigkeit": NumberFilter,
"ID_Kategorie": NumberFilter,
"ID_Material": NumberFilter,
"ID_Nachweissicherheit": NumberFilter,
"ID_Nachweistyp": NumberFilter,
"ID_Qualitaet": NumberFilter,
"ID_Quartiertyp": NumberFilter,
"ID_Reproduktion": NumberFilter,
"ID_Revierstatus": NumberFilter,
"ID_Schicht": NumberFilter,
"ID_Stadium": NumberFilter,
"ID_Substrat": NumberFilter,
"ID_Substratzustand": NumberFilter,
"ID_Toleranz": NumberFilter,
"ID_Traegerbaum": NumberFilter,
"ID_Verhalten": NumberFilter,
"ID_Verwendung": NumberFilter,
"ID_Wuchsstelle": NumberFilter,
"Jahr": NumberFilter,
"LAEACellCode": NumberFilter,
"LAEARaster": StringFilter,
"Len5Finger": NumberFilter,
"LenDaumen": NumberFilter,
"LenUnterarm": NumberFilter,
"MTB": NumberFilter,
"MTBQ": NumberFilter,
"Masse": NumberFilter,
"Masse_kg_gesamt": NumberFilter,
"Merkmal": StringFilter,
"Monat": NumberFilter,
"Ortsbezeichnung": StringFilter,
"Quelle": StringFilter,
"Raster": StringFilter,
"RefID": NumberFilter,
"ReferenzNr": StringFilter,
"Region": StringFilter,
"Ringnummer": StringFilter,
"RingnummerText": StringFilter,
"Ringserie": StringFilter,
"Vector_Grad": NumberFilter,
"Vector_Meter": NumberFilter,
"Zentrale": StringFilter,
"_and": [ObservationsFilterInput],
"_or": [ObservationsFilterInput],
"sDBHerkunft": StringFilter,
"xWGS84": NumberFilter,
"yWGS84": NumberFilter
}
ObservationsOrderByInput
Fields
Input Field | Description |
---|---|
Allochthonie - SortOrder
|
Sort by Allochthonie (see type "Observation") |
Anzahl - SortOrder
|
Sort by Anzahl (see type "Observation") |
AnzahlAdult - SortOrder
|
Sort by AnzahlAdult (see type "Observation") |
AnzahlBluehend - SortOrder
|
Sort by AnzahlBluehend (see type "Observation") |
AnzahlGeschAdult - SortOrder
|
Sort by AnzahlGeschAdult (see type "Observation") |
AnzahlGeschGesamt - SortOrder
|
Sort by AnzahlGeschGesamt (see type "Observation") |
AnzahlGeschJuvenil - SortOrder
|
Sort by AnzahlGeschJuvenil (see type "Observation") |
AnzahlJuvenil - SortOrder
|
Sort by AnzahlJuvenil (see type "Observation") |
AnzahlMaennl - SortOrder
|
Sort by AnzahlMaennl (see type "Observation") |
AnzahlNichtBluehend - SortOrder
|
Sort by AnzahlNichtBluehend (see type "Observation") |
AnzahlTFAdult - SortOrder
|
Sort by AnzahlTFAdult (see type "Observation") |
AnzahlTFJuvenil - SortOrder
|
Sort by AnzahlTFJuvenil (see type "Observation") |
AnzahlWFMaennl - SortOrder
|
Sort by AnzahlWFMaennl (see type "Observation") |
AnzahlWFWeibl - SortOrder
|
Sort by AnzahlWFWeibl (see type "Observation") |
AnzahlWeibl - SortOrder
|
Sort by AnzahlWeibl (see type "Observation") |
Anzahl_1 - SortOrder
|
Sort by Anzahl_1 (see type "Observation") |
Anzahl_2 - SortOrder
|
Sort by Anzahl_2 (see type "Observation") |
Anzahl_3 - SortOrder
|
Sort by Anzahl_3 (see type "Observation") |
Anzahl_4 - SortOrder
|
Sort by Anzahl_4 (see type "Observation") |
Anzahl_5 - SortOrder
|
Sort by Anzahl_5 (see type "Observation") |
Anzahl_6 - SortOrder
|
Sort by Anzahl_6 (see type "Observation") |
Anzahl_7 - SortOrder
|
Sort by Anzahl_7 (see type "Observation") |
Anzahl_8 - SortOrder
|
Sort by Anzahl_8 (see type "Observation") |
Anzahl_9 - SortOrder
|
Sort by Anzahl_9 (see type "Observation") |
Anzahl_10 - SortOrder
|
Sort by Anzahl_10 (see type "Observation") |
Anzahl_11 - SortOrder
|
Sort by Anzahl_11 (see type "Observation") |
Anzahl_12 - SortOrder
|
Sort by Anzahl_12 (see type "Observation") |
Anzahl_Max - SortOrder
|
Sort by Anzahl_Max (see type "Observation") |
Anzahl_Min - SortOrder
|
Sort by Anzahl_Min (see type "Observation") |
Bemerkung - SortOrder
|
Sort by Bemerkung (see type "Observation") |
Biotop - SortOrder
|
Sort by Biotop (see type "Observation") |
Date_Changed - SortOrder
|
Sort by Date_Changed (see type "Observation") |
Date_Create - SortOrder
|
Sort by Date_Create (see type "Observation") |
Date_Service - SortOrder
|
Sort by Date_Service (see type "Observation") |
Datum - SortOrder
|
Sort by Datum (see type "Observation") |
Datum_GeprueftAm - SortOrder
|
Sort by Datum_GeprueftAm (see type "Observation") |
Details - SortOrder
|
Sort by Details (see type "Observation") |
Erfassungsname - SortOrder
|
Sort by Erfassungsname (see type "Observation") |
Flag - SortOrder
|
Sort by Flag (see type "Observation") |
Flag_Aggregiert - SortOrder
|
Sort by Flag_Aggregiert (see type "Observation") |
Flag_Basisort - SortOrder
|
Sort by Flag_Basisort (see type "Observation") |
Flag_Beringung - SortOrder
|
Sort by Flag_Beringung (see type "Observation") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "Observation") |
Flag_Export - SortOrder
|
Sort by Flag_Export (see type "Observation") |
Flag_Filter - SortOrder
|
Sort by Flag_Filter (see type "Observation") |
Flag_Intern - SortOrder
|
Sort by Flag_Intern (see type "Observation") |
Flag_Trash - SortOrder
|
Sort by Flag_Trash (see type "Observation") |
GUID_Atlas - SortOrder
|
Sort by GUID_Atlas (see type "Observation") |
GUID_Beobachter - SortOrder
|
Sort by GUID_Beobachter (see type "Observation") |
GUID_Bestimmer - SortOrder
|
Sort by GUID_Bestimmer (see type "Observation") |
GUID_Daten - SortOrder
|
Sort by GUID_Daten (see type "Observation") |
GUID_Datenbankherkunft - SortOrder
|
Sort by GUID_Datenbankherkunft (see type "Observation") |
GUID_GeprueftVon - SortOrder
|
Sort by GUID_GeprueftVon (see type "Observation") |
GUID_Group - SortOrder
|
Sort by GUID_Group (see type "Observation") |
GUID_Herkunft - SortOrder
|
Sort by GUID_Herkunft (see type "Observation") |
GUID_Import - SortOrder
|
Sort by GUID_Import (see type "Observation") |
GUID_Kasten - SortOrder
|
Sort by GUID_Kasten (see type "Observation") |
GUID_Ort - SortOrder
|
Sort by GUID_Ort (see type "Observation") |
GUID_Sammlung - SortOrder
|
Sort by GUID_Sammlung (see type "Observation") |
GUID_User - SortOrder
|
Sort by GUID_User (see type "Observation") |
Geprueft_Info - SortOrder
|
Sort by Geprueft_Info (see type "Observation") |
Hoehe - SortOrder
|
Sort by Hoehe (see type "Observation") |
ID_AddIn - SortOrder
|
Sort by ID_AddIn (see type "Observation") |
ID_Alter - SortOrder
|
Sort by ID_Alter (see type "Observation") |
ID_Art - SortOrder
|
Sort by ID_Art (see type "Observation") |
ID_Art_Negativnachweis - SortOrder
|
Sort by ID_Art_Negativnachweis (see type "Observation") |
ID_Art_NichtKartiert - SortOrder
|
Sort by ID_Art_NichtKartiert (see type "Observation") |
ID_Besatz - SortOrder
|
Sort by ID_Besatz (see type "Observation") |
ID_Cloud - SortOrder
|
Sort by ID_Cloud (see type "Observation") |
ID_Daten - SortOrder
|
Sort by ID_Daten (see type "Observation") |
ID_Deckungsgrad - SortOrder
|
Sort by ID_Deckungsgrad (see type "Observation") |
ID_Einheit - SortOrder
|
Sort by ID_Einheit (see type "Observation") |
ID_FundTyp - SortOrder
|
Sort by ID_FundTyp (see type "Observation") |
ID_GenauigkeitAnzahl - SortOrder
|
Sort by ID_GenauigkeitAnzahl (see type "Observation") |
ID_GenauigkeitDatum - SortOrder
|
Sort by ID_GenauigkeitDatum (see type "Observation") |
ID_Habitat - SortOrder
|
Sort by ID_Habitat (see type "Observation") |
ID_Herausgabegenauigkeit - SortOrder
|
Sort by ID_Herausgabegenauigkeit (see type "Observation") |
ID_Kategorie - SortOrder
|
Sort by ID_Kategorie (see type "Observation") |
ID_Material - SortOrder
|
Sort by ID_Material (see type "Observation") |
ID_Nachweissicherheit - SortOrder
|
Sort by ID_Nachweissicherheit (see type "Observation") |
ID_Nachweistyp - SortOrder
|
Sort by ID_Nachweistyp (see type "Observation") |
ID_Qualitaet - SortOrder
|
Sort by ID_Qualitaet (see type "Observation") |
ID_Quartiertyp - SortOrder
|
Sort by ID_Quartiertyp (see type "Observation") |
ID_Reproduktion - SortOrder
|
Sort by ID_Reproduktion (see type "Observation") |
ID_Revierstatus - SortOrder
|
Sort by ID_Revierstatus (see type "Observation") |
ID_Schicht - SortOrder
|
Sort by ID_Schicht (see type "Observation") |
ID_Stadium - SortOrder
|
Sort by ID_Stadium (see type "Observation") |
ID_Substrat - SortOrder
|
Sort by ID_Substrat (see type "Observation") |
ID_Substratzustand - SortOrder
|
Sort by ID_Substratzustand (see type "Observation") |
ID_Toleranz - SortOrder
|
Sort by ID_Toleranz (see type "Observation") |
ID_Traegerbaum - SortOrder
|
Sort by ID_Traegerbaum (see type "Observation") |
ID_Verhalten - SortOrder
|
Sort by ID_Verhalten (see type "Observation") |
ID_Verwendung - SortOrder
|
Sort by ID_Verwendung (see type "Observation") |
ID_Wuchsstelle - SortOrder
|
Sort by ID_Wuchsstelle (see type "Observation") |
Jahr - SortOrder
|
Sort by Jahr (see type "Observation") |
LAEACellCode - SortOrder
|
Sort by LAEACellCode (see type "Observation") |
LAEARaster - SortOrder
|
Sort by LAEARaster (see type "Observation") |
Len5Finger - SortOrder
|
Sort by Len5Finger (see type "Observation") |
LenDaumen - SortOrder
|
Sort by LenDaumen (see type "Observation") |
LenUnterarm - SortOrder
|
Sort by LenUnterarm (see type "Observation") |
MTB - SortOrder
|
Sort by MTB (see type "Observation") |
MTBQ - SortOrder
|
Sort by MTBQ (see type "Observation") |
Masse - SortOrder
|
Sort by Masse (see type "Observation") |
Masse_kg_gesamt - SortOrder
|
Sort by Masse_kg_gesamt (see type "Observation") |
Merkmal - SortOrder
|
Sort by Merkmal (see type "Observation") |
Monat - SortOrder
|
Sort by Monat (see type "Observation") |
Ortsbezeichnung - SortOrder
|
Sort by Ortsbezeichnung (see type "Observation") |
Quelle - SortOrder
|
Sort by Quelle (see type "Observation") |
Raster - SortOrder
|
Sort by Raster (see type "Observation") |
RefID - SortOrder
|
Sort by RefID (see type "Observation") |
ReferenzNr - SortOrder
|
Sort by ReferenzNr (see type "Observation") |
Region - SortOrder
|
Sort by Region (see type "Observation") |
Ringnummer - SortOrder
|
Sort by Ringnummer (see type "Observation") |
RingnummerText - SortOrder
|
Sort by RingnummerText (see type "Observation") |
Ringserie - SortOrder
|
Sort by Ringserie (see type "Observation") |
Vector_Grad - SortOrder
|
Sort by Vector_Grad (see type "Observation") |
Vector_Meter - SortOrder
|
Sort by Vector_Meter (see type "Observation") |
Zentrale - SortOrder
|
Sort by Zentrale (see type "Observation") |
sDBHerkunft - SortOrder
|
Sort by sDBHerkunft (see type "Observation") |
xWGS84 - SortOrder
|
Sort by xWGS84 (see type "Observation") |
yWGS84 - SortOrder
|
Sort by yWGS84 (see type "Observation") |
Example
{
"Allochthonie": "asc",
"Anzahl": "asc",
"AnzahlAdult": "asc",
"AnzahlBluehend": "asc",
"AnzahlGeschAdult": "asc",
"AnzahlGeschGesamt": "asc",
"AnzahlGeschJuvenil": "asc",
"AnzahlJuvenil": "asc",
"AnzahlMaennl": "asc",
"AnzahlNichtBluehend": "asc",
"AnzahlTFAdult": "asc",
"AnzahlTFJuvenil": "asc",
"AnzahlWFMaennl": "asc",
"AnzahlWFWeibl": "asc",
"AnzahlWeibl": "asc",
"Anzahl_1": "asc",
"Anzahl_2": "asc",
"Anzahl_3": "asc",
"Anzahl_4": "asc",
"Anzahl_5": "asc",
"Anzahl_6": "asc",
"Anzahl_7": "asc",
"Anzahl_8": "asc",
"Anzahl_9": "asc",
"Anzahl_10": "asc",
"Anzahl_11": "asc",
"Anzahl_12": "asc",
"Anzahl_Max": "asc",
"Anzahl_Min": "asc",
"Bemerkung": "asc",
"Biotop": "asc",
"Date_Changed": "asc",
"Date_Create": "asc",
"Date_Service": "asc",
"Datum": "asc",
"Datum_GeprueftAm": "asc",
"Details": "asc",
"Erfassungsname": "asc",
"Flag": "asc",
"Flag_Aggregiert": "asc",
"Flag_Basisort": "asc",
"Flag_Beringung": "asc",
"Flag_Deleted": "asc",
"Flag_Export": "asc",
"Flag_Filter": "asc",
"Flag_Intern": "asc",
"Flag_Trash": "asc",
"GUID_Atlas": "asc",
"GUID_Beobachter": "asc",
"GUID_Bestimmer": "asc",
"GUID_Daten": "asc",
"GUID_Datenbankherkunft": "asc",
"GUID_GeprueftVon": "asc",
"GUID_Group": "asc",
"GUID_Herkunft": "asc",
"GUID_Import": "asc",
"GUID_Kasten": "asc",
"GUID_Ort": "asc",
"GUID_Sammlung": "asc",
"GUID_User": "asc",
"Geprueft_Info": "asc",
"Hoehe": "asc",
"ID_AddIn": "asc",
"ID_Alter": "asc",
"ID_Art": "asc",
"ID_Art_Negativnachweis": "asc",
"ID_Art_NichtKartiert": "asc",
"ID_Besatz": "asc",
"ID_Cloud": "asc",
"ID_Daten": "asc",
"ID_Deckungsgrad": "asc",
"ID_Einheit": "asc",
"ID_FundTyp": "asc",
"ID_GenauigkeitAnzahl": "asc",
"ID_GenauigkeitDatum": "asc",
"ID_Habitat": "asc",
"ID_Herausgabegenauigkeit": "asc",
"ID_Kategorie": "asc",
"ID_Material": "asc",
"ID_Nachweissicherheit": "asc",
"ID_Nachweistyp": "asc",
"ID_Qualitaet": "asc",
"ID_Quartiertyp": "asc",
"ID_Reproduktion": "asc",
"ID_Revierstatus": "asc",
"ID_Schicht": "asc",
"ID_Stadium": "asc",
"ID_Substrat": "asc",
"ID_Substratzustand": "asc",
"ID_Toleranz": "asc",
"ID_Traegerbaum": "asc",
"ID_Verhalten": "asc",
"ID_Verwendung": "asc",
"ID_Wuchsstelle": "asc",
"Jahr": "asc",
"LAEACellCode": "asc",
"LAEARaster": "asc",
"Len5Finger": "asc",
"LenDaumen": "asc",
"LenUnterarm": "asc",
"MTB": "asc",
"MTBQ": "asc",
"Masse": "asc",
"Masse_kg_gesamt": "asc",
"Merkmal": "asc",
"Monat": "asc",
"Ortsbezeichnung": "asc",
"Quelle": "asc",
"Raster": "asc",
"RefID": "asc",
"ReferenzNr": "asc",
"Region": "asc",
"Ringnummer": "asc",
"RingnummerText": "asc",
"Ringserie": "asc",
"Vector_Grad": "asc",
"Vector_Meter": "asc",
"Zentrale": "asc",
"sDBHerkunft": "asc",
"xWGS84": "asc",
"yWGS84": "asc"
}
Observer
Description
Observer
Fields
Field Name | Description |
---|---|
AdresseAlternativ - String
|
|
Alias_Zentrale - String
|
|
Anrede - String
|
|
Ansprechberinger - String
|
|
Arten - String
|
|
Bemerkung - String
|
Comment |
Beobachter - String
|
Observer full name |
Beringergemeinschaft - String
|
|
Code_Beringer - String
|
|
Date_Changed - DateTime
|
|
Date_Create - DateTime
|
Creation date |
Date_Service - DateTime
|
Service date |
Euring - String
|
|
Fax - String
|
|
Flag - Boolean
|
|
Flag_Aktuell - Boolean
|
|
Flag_Deleted - Boolean
|
|
Flag_HomeZentrale - Boolean
|
|
Flag_Kontakt - Boolean
|
|
Flag_OnlineAuskunft - Boolean
|
|
Flag_Visible - Boolean
|
|
Flag_eMail_OnlineAuskunft - Boolean
|
|
GUID_Ansprechberinger - String
|
|
GUID_Beobachter - String!
|
Observer GUID |
GUID_Import - String
|
|
GUID_Region - String
|
|
GUID_Replace - String
|
|
GUID_VerweisBeobachter - String
|
|
Geburtsdatum - DateTime
|
|
ID_Adressierung - Int
|
|
ID_Aktivitaet - Int
|
|
ID_Anrede - Int
|
|
ID_Beobachter - Int!
|
Observer ID |
ID_Beringerstatus - Int
|
|
ID_Cloud - Int!
|
|
ID_Mitteilung - Int
|
|
ID_Owner - Int
|
|
ID_Personentyp - Int
|
|
ID_Sprache - Int
|
|
Inschrift - String
|
|
Institution - String
|
|
Mobil - String
|
Mobile phone |
Nachname - String
|
Last name |
Namenszusatz - String
|
|
NewID - Int
|
|
Ort - String
|
City |
PLZ - String
|
Postal code |
RefID - Int
|
|
Region - String
|
|
Software - String
|
|
Strasse - String
|
Street |
Telefon - String
|
Phone |
Verweis_Zentrale - String
|
|
Vorname - String
|
First name |
Zentrale - String
|
|
eMail - String
|
Example
{
"AdresseAlternativ": "xyz789",
"Alias_Zentrale": "xyz789",
"Anrede": "abc123",
"Ansprechberinger": "abc123",
"Arten": "xyz789",
"Bemerkung": "xyz789",
"Beobachter": "xyz789",
"Beringergemeinschaft": "abc123",
"Code_Beringer": "xyz789",
"Date_Changed": "2007-12-03T10:15:30Z",
"Date_Create": "2007-12-03T10:15:30Z",
"Date_Service": "2007-12-03T10:15:30Z",
"Euring": "abc123",
"Fax": "xyz789",
"Flag": true,
"Flag_Aktuell": false,
"Flag_Deleted": false,
"Flag_HomeZentrale": true,
"Flag_Kontakt": false,
"Flag_OnlineAuskunft": true,
"Flag_Visible": false,
"Flag_eMail_OnlineAuskunft": false,
"GUID_Ansprechberinger": "xyz789",
"GUID_Beobachter": "xyz789",
"GUID_Import": "xyz789",
"GUID_Region": "xyz789",
"GUID_Replace": "xyz789",
"GUID_VerweisBeobachter": "xyz789",
"Geburtsdatum": "2007-12-03T10:15:30Z",
"ID_Adressierung": 987,
"ID_Aktivitaet": 987,
"ID_Anrede": 987,
"ID_Beobachter": 123,
"ID_Beringerstatus": 123,
"ID_Cloud": 987,
"ID_Mitteilung": 123,
"ID_Owner": 123,
"ID_Personentyp": 123,
"ID_Sprache": 987,
"Inschrift": "xyz789",
"Institution": "xyz789",
"Mobil": "xyz789",
"Nachname": "xyz789",
"Namenszusatz": "abc123",
"NewID": 123,
"Ort": "abc123",
"PLZ": "abc123",
"RefID": 987,
"Region": "abc123",
"Software": "xyz789",
"Strasse": "xyz789",
"Telefon": "xyz789",
"Verweis_Zentrale": "abc123",
"Vorname": "abc123",
"Zentrale": "xyz789",
"eMail": "abc123"
}
ObserversFilterInput
Fields
Input Field | Description |
---|---|
AdresseAlternativ - StringFilter
|
Filter by AdresseAlternativ (see type "Observer") |
Alias_Zentrale - StringFilter
|
Filter by Alias_Zentrale (see type "Observer") |
Anrede - StringFilter
|
Filter by Anrede (see type "Observer") |
Ansprechberinger - StringFilter
|
Filter by Ansprechberinger (see type "Observer") |
Arten - StringFilter
|
Filter by Arten (see type "Observer") |
Bemerkung - StringFilter
|
Filter by Bemerkung (see type "Observer") |
Beobachter - StringFilter
|
Filter by Beobachter (see type "Observer") |
Beringergemeinschaft - StringFilter
|
Filter by Beringergemeinschaft (see type "Observer") |
Code_Beringer - StringFilter
|
Filter by Code_Beringer (see type "Observer") |
Date_Changed - StringFilter
|
Filter by Date_Changed (see type "Observer") |
Date_Create - StringFilter
|
Filter by Date_Create (see type "Observer") |
Date_Service - StringFilter
|
Filter by Date_Service (see type "Observer") |
Euring - StringFilter
|
Filter by Euring (see type "Observer") |
Fax - StringFilter
|
Filter by Fax (see type "Observer") |
Flag - BooleanFilter
|
Filter by Flag (see type "Observer") |
Flag_Aktuell - BooleanFilter
|
Filter by Flag_Aktuell (see type "Observer") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "Observer") |
Flag_HomeZentrale - BooleanFilter
|
Filter by Flag_HomeZentrale (see type "Observer") |
Flag_Kontakt - BooleanFilter
|
Filter by Flag_Kontakt (see type "Observer") |
Flag_OnlineAuskunft - BooleanFilter
|
Filter by Flag_OnlineAuskunft (see type "Observer") |
Flag_Visible - BooleanFilter
|
Filter by Flag_Visible (see type "Observer") |
Flag_eMail_OnlineAuskunft - BooleanFilter
|
Filter by Flag_eMail_OnlineAuskunft (see type "Observer") |
GUID_Ansprechberinger - StringFilter
|
Filter by GUID_Ansprechberinger (see type "Observer") |
GUID_Beobachter - StringFilter
|
Filter by GUID_Beobachter (see type "Observer") |
GUID_Import - StringFilter
|
Filter by GUID_Import (see type "Observer") |
GUID_Region - StringFilter
|
Filter by GUID_Region (see type "Observer") |
GUID_Replace - StringFilter
|
Filter by GUID_Replace (see type "Observer") |
GUID_VerweisBeobachter - StringFilter
|
Filter by GUID_VerweisBeobachter (see type "Observer") |
Geburtsdatum - StringFilter
|
Filter by Geburtsdatum (see type "Observer") |
ID_Adressierung - NumberFilter
|
Filter by ID_Adressierung (see type "Observer") |
ID_Aktivitaet - NumberFilter
|
Filter by ID_Aktivitaet (see type "Observer") |
ID_Anrede - NumberFilter
|
Filter by ID_Anrede (see type "Observer") |
ID_Beobachter - NumberFilter
|
Filter by ID_Beobachter (see type "Observer") |
ID_Beringerstatus - NumberFilter
|
Filter by ID_Beringerstatus (see type "Observer") |
ID_Cloud - NumberFilter
|
Filter by ID_Cloud (see type "Observer") |
ID_Mitteilung - NumberFilter
|
Filter by ID_Mitteilung (see type "Observer") |
ID_Owner - NumberFilter
|
Filter by ID_Owner (see type "Observer") |
ID_Personentyp - NumberFilter
|
Filter by ID_Personentyp (see type "Observer") |
ID_Sprache - NumberFilter
|
Filter by ID_Sprache (see type "Observer") |
Inschrift - StringFilter
|
Filter by Inschrift (see type "Observer") |
Institution - StringFilter
|
Filter by Institution (see type "Observer") |
Mobil - StringFilter
|
Filter by Mobil (see type "Observer") |
Nachname - StringFilter
|
Filter by Nachname (see type "Observer") |
Namenszusatz - StringFilter
|
Filter by Namenszusatz (see type "Observer") |
NewID - NumberFilter
|
Filter by NewID (see type "Observer") |
Ort - StringFilter
|
Filter by Ort (see type "Observer") |
PLZ - StringFilter
|
Filter by PLZ (see type "Observer") |
RefID - NumberFilter
|
Filter by RefID (see type "Observer") |
Region - StringFilter
|
Filter by Region (see type "Observer") |
Software - StringFilter
|
Filter by Software (see type "Observer") |
Strasse - StringFilter
|
Filter by Strasse (see type "Observer") |
Telefon - StringFilter
|
Filter by Telefon (see type "Observer") |
Verweis_Zentrale - StringFilter
|
Filter by Verweis_Zentrale (see type "Observer") |
Vorname - StringFilter
|
Filter by Vorname (see type "Observer") |
Zentrale - StringFilter
|
Filter by Zentrale (see type "Observer") |
_and - [ObserversFilterInput!]
|
Logical AND operator |
_or - [ObserversFilterInput!]
|
Logical OR operator |
eMail - StringFilter
|
Filter by eMail (see type "Observer") |
Example
{
"AdresseAlternativ": StringFilter,
"Alias_Zentrale": StringFilter,
"Anrede": StringFilter,
"Ansprechberinger": StringFilter,
"Arten": StringFilter,
"Bemerkung": StringFilter,
"Beobachter": StringFilter,
"Beringergemeinschaft": StringFilter,
"Code_Beringer": StringFilter,
"Date_Changed": StringFilter,
"Date_Create": StringFilter,
"Date_Service": StringFilter,
"Euring": StringFilter,
"Fax": StringFilter,
"Flag": BooleanFilter,
"Flag_Aktuell": BooleanFilter,
"Flag_Deleted": BooleanFilter,
"Flag_HomeZentrale": BooleanFilter,
"Flag_Kontakt": BooleanFilter,
"Flag_OnlineAuskunft": BooleanFilter,
"Flag_Visible": BooleanFilter,
"Flag_eMail_OnlineAuskunft": BooleanFilter,
"GUID_Ansprechberinger": StringFilter,
"GUID_Beobachter": StringFilter,
"GUID_Import": StringFilter,
"GUID_Region": StringFilter,
"GUID_Replace": StringFilter,
"GUID_VerweisBeobachter": StringFilter,
"Geburtsdatum": StringFilter,
"ID_Adressierung": NumberFilter,
"ID_Aktivitaet": NumberFilter,
"ID_Anrede": NumberFilter,
"ID_Beobachter": NumberFilter,
"ID_Beringerstatus": NumberFilter,
"ID_Cloud": NumberFilter,
"ID_Mitteilung": NumberFilter,
"ID_Owner": NumberFilter,
"ID_Personentyp": NumberFilter,
"ID_Sprache": NumberFilter,
"Inschrift": StringFilter,
"Institution": StringFilter,
"Mobil": StringFilter,
"Nachname": StringFilter,
"Namenszusatz": StringFilter,
"NewID": NumberFilter,
"Ort": StringFilter,
"PLZ": StringFilter,
"RefID": NumberFilter,
"Region": StringFilter,
"Software": StringFilter,
"Strasse": StringFilter,
"Telefon": StringFilter,
"Verweis_Zentrale": StringFilter,
"Vorname": StringFilter,
"Zentrale": StringFilter,
"_and": [ObserversFilterInput],
"_or": [ObserversFilterInput],
"eMail": StringFilter
}
ObserversOrderByInput
Fields
Input Field | Description |
---|---|
AdresseAlternativ - SortOrder
|
Sort by AdresseAlternativ (see type "Observer") |
Alias_Zentrale - SortOrder
|
Sort by Alias_Zentrale (see type "Observer") |
Anrede - SortOrder
|
Sort by Anrede (see type "Observer") |
Ansprechberinger - SortOrder
|
Sort by Ansprechberinger (see type "Observer") |
Arten - SortOrder
|
Sort by Arten (see type "Observer") |
Bemerkung - SortOrder
|
Sort by Bemerkung (see type "Observer") |
Beobachter - SortOrder
|
Sort by Beobachter (see type "Observer") |
Beringergemeinschaft - SortOrder
|
Sort by Beringergemeinschaft (see type "Observer") |
Code_Beringer - SortOrder
|
Sort by Code_Beringer (see type "Observer") |
Date_Changed - SortOrder
|
Sort by Date_Changed (see type "Observer") |
Date_Create - SortOrder
|
Sort by Date_Create (see type "Observer") |
Date_Service - SortOrder
|
Sort by Date_Service (see type "Observer") |
Euring - SortOrder
|
Sort by Euring (see type "Observer") |
Fax - SortOrder
|
Sort by Fax (see type "Observer") |
Flag - SortOrder
|
Sort by Flag (see type "Observer") |
Flag_Aktuell - SortOrder
|
Sort by Flag_Aktuell (see type "Observer") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "Observer") |
Flag_HomeZentrale - SortOrder
|
Sort by Flag_HomeZentrale (see type "Observer") |
Flag_Kontakt - SortOrder
|
Sort by Flag_Kontakt (see type "Observer") |
Flag_OnlineAuskunft - SortOrder
|
Sort by Flag_OnlineAuskunft (see type "Observer") |
Flag_Visible - SortOrder
|
Sort by Flag_Visible (see type "Observer") |
Flag_eMail_OnlineAuskunft - SortOrder
|
Sort by Flag_eMail_OnlineAuskunft (see type "Observer") |
GUID_Ansprechberinger - SortOrder
|
Sort by GUID_Ansprechberinger (see type "Observer") |
GUID_Beobachter - SortOrder
|
Sort by GUID_Beobachter (see type "Observer") |
GUID_Import - SortOrder
|
Sort by GUID_Import (see type "Observer") |
GUID_Region - SortOrder
|
Sort by GUID_Region (see type "Observer") |
GUID_Replace - SortOrder
|
Sort by GUID_Replace (see type "Observer") |
GUID_VerweisBeobachter - SortOrder
|
Sort by GUID_VerweisBeobachter (see type "Observer") |
Geburtsdatum - SortOrder
|
Sort by Geburtsdatum (see type "Observer") |
ID_Adressierung - SortOrder
|
Sort by ID_Adressierung (see type "Observer") |
ID_Aktivitaet - SortOrder
|
Sort by ID_Aktivitaet (see type "Observer") |
ID_Anrede - SortOrder
|
Sort by ID_Anrede (see type "Observer") |
ID_Beobachter - SortOrder
|
Sort by ID_Beobachter (see type "Observer") |
ID_Beringerstatus - SortOrder
|
Sort by ID_Beringerstatus (see type "Observer") |
ID_Cloud - SortOrder
|
Sort by ID_Cloud (see type "Observer") |
ID_Mitteilung - SortOrder
|
Sort by ID_Mitteilung (see type "Observer") |
ID_Owner - SortOrder
|
Sort by ID_Owner (see type "Observer") |
ID_Personentyp - SortOrder
|
Sort by ID_Personentyp (see type "Observer") |
ID_Sprache - SortOrder
|
Sort by ID_Sprache (see type "Observer") |
Inschrift - SortOrder
|
Sort by Inschrift (see type "Observer") |
Institution - SortOrder
|
Sort by Institution (see type "Observer") |
Mobil - SortOrder
|
Sort by Mobil (see type "Observer") |
Nachname - SortOrder
|
Sort by Nachname (see type "Observer") |
Namenszusatz - SortOrder
|
Sort by Namenszusatz (see type "Observer") |
NewID - SortOrder
|
Sort by NewID (see type "Observer") |
Ort - SortOrder
|
Sort by Ort (see type "Observer") |
PLZ - SortOrder
|
Sort by PLZ (see type "Observer") |
RefID - SortOrder
|
Sort by RefID (see type "Observer") |
Region - SortOrder
|
Sort by Region (see type "Observer") |
Software - SortOrder
|
Sort by Software (see type "Observer") |
Strasse - SortOrder
|
Sort by Strasse (see type "Observer") |
Telefon - SortOrder
|
Sort by Telefon (see type "Observer") |
Verweis_Zentrale - SortOrder
|
Sort by Verweis_Zentrale (see type "Observer") |
Vorname - SortOrder
|
Sort by Vorname (see type "Observer") |
Zentrale - SortOrder
|
Sort by Zentrale (see type "Observer") |
eMail - SortOrder
|
Sort by eMail (see type "Observer") |
Example
{
"AdresseAlternativ": "asc",
"Alias_Zentrale": "asc",
"Anrede": "asc",
"Ansprechberinger": "asc",
"Arten": "asc",
"Bemerkung": "asc",
"Beobachter": "asc",
"Beringergemeinschaft": "asc",
"Code_Beringer": "asc",
"Date_Changed": "asc",
"Date_Create": "asc",
"Date_Service": "asc",
"Euring": "asc",
"Fax": "asc",
"Flag": "asc",
"Flag_Aktuell": "asc",
"Flag_Deleted": "asc",
"Flag_HomeZentrale": "asc",
"Flag_Kontakt": "asc",
"Flag_OnlineAuskunft": "asc",
"Flag_Visible": "asc",
"Flag_eMail_OnlineAuskunft": "asc",
"GUID_Ansprechberinger": "asc",
"GUID_Beobachter": "asc",
"GUID_Import": "asc",
"GUID_Region": "asc",
"GUID_Replace": "asc",
"GUID_VerweisBeobachter": "asc",
"Geburtsdatum": "asc",
"ID_Adressierung": "asc",
"ID_Aktivitaet": "asc",
"ID_Anrede": "asc",
"ID_Beobachter": "asc",
"ID_Beringerstatus": "asc",
"ID_Cloud": "asc",
"ID_Mitteilung": "asc",
"ID_Owner": "asc",
"ID_Personentyp": "asc",
"ID_Sprache": "asc",
"Inschrift": "asc",
"Institution": "asc",
"Mobil": "asc",
"Nachname": "asc",
"Namenszusatz": "asc",
"NewID": "asc",
"Ort": "asc",
"PLZ": "asc",
"RefID": "asc",
"Region": "asc",
"Software": "asc",
"Strasse": "asc",
"Telefon": "asc",
"Verweis_Zentrale": "asc",
"Vorname": "asc",
"Zentrale": "asc",
"eMail": "asc"
}
ReportingPortal
Description
Reporting portals
Fields
Field Name | Description |
---|---|
Cloud - Cloud!
|
|
ID_Cloud - Float!
|
Cloud ID |
ReportingPortalPages - [ReportingPortalPage!]!
|
|
Arguments
|
|
id_meldeportal - Float!
|
Reporting portal ID |
settings - String
|
Reporting portal settings (stringified JSON) |
settings_schema_version - String
|
Reporting portal settings schema version |
subdomain - String!
|
Reporting portal subdomain |
Example
{
"Cloud": Cloud,
"ID_Cloud": 987.65,
"ReportingPortalPages": [ReportingPortalPage],
"id_meldeportal": 987.65,
"settings": "xyz789",
"settings_schema_version": "abc123",
"subdomain": "abc123"
}
ReportingPortalPage
Description
Reporting portal pages
Fields
Field Name | Description |
---|---|
ReportingPortal - ReportingPortal!
|
|
id_meldeportal - Float!
|
Reporting portal ID |
id_meldeportal_page - Float!
|
Reporting portal page ID |
is_public - Boolean!
|
Reporting portal page is publicly visible |
report_type - String!
|
Reporting portal page report type |
settings - String
|
Reporting portal page settings (stringified JSON) |
settings_schema_version - String
|
Reporting portal page settings schema version |
url_path - String!
|
Reporting portal page url path |
Example
{
"ReportingPortal": ReportingPortal,
"id_meldeportal": 987.65,
"id_meldeportal_page": 123.45,
"is_public": true,
"report_type": "abc123",
"settings": "xyz789",
"settings_schema_version": "xyz789",
"url_path": "abc123"
}
ReportingPortalPagesFilterInput
Fields
Input Field | Description |
---|---|
_and - [ReportingPortalPagesFilterInput!]
|
Logical AND operator |
_or - [ReportingPortalPagesFilterInput!]
|
Logical OR operator |
id_meldeportal_page - NumberFilter
|
Filter by id_meldeportal_page (see type "ReportingPortalPage") |
is_public - BooleanFilter
|
Filter by is_public (see type "ReportingPortalPage") |
report_type - StringFilter
|
Filter by report_type (see type "ReportingPortalPage") |
settings - StringFilter
|
Filter by settings (see type "ReportingPortalPage") |
settings_schema_version - StringFilter
|
Filter by settings_schema_version (see type "ReportingPortalPage") |
url_path - StringFilter
|
Filter by url_path (see type "ReportingPortalPage") |
Example
{
"_and": [ReportingPortalPagesFilterInput],
"_or": [ReportingPortalPagesFilterInput],
"id_meldeportal_page": NumberFilter,
"is_public": BooleanFilter,
"report_type": StringFilter,
"settings": StringFilter,
"settings_schema_version": StringFilter,
"url_path": StringFilter
}
ReportingPortalPagesOrderByInput
Fields
Input Field | Description |
---|---|
id_meldeportal_page - SortOrder
|
Sort by id_meldeportal_page (see type "ReportingPortalPage") |
is_public - SortOrder
|
Sort by is_public (see type "ReportingPortalPage") |
report_type - SortOrder
|
Sort by report_type (see type "ReportingPortalPage") |
settings - SortOrder
|
Sort by settings (see type "ReportingPortalPage") |
settings_schema_version - SortOrder
|
Sort by settings_schema_version (see type "ReportingPortalPage") |
url_path - SortOrder
|
Sort by url_path (see type "ReportingPortalPage") |
Example
{
"id_meldeportal_page": "asc",
"is_public": "asc",
"report_type": "asc",
"settings": "asc",
"settings_schema_version": "asc",
"url_path": "asc"
}
ReportingPortalsFilterInput
Fields
Input Field | Description |
---|---|
ID_Cloud - NumberFilter
|
Filter by ID_Cloud (see type "ReportingPortal") |
_and - [ReportingPortalsFilterInput!]
|
Logical AND operator |
_or - [ReportingPortalsFilterInput!]
|
Logical OR operator |
id_meldeportal - NumberFilter
|
Filter by id_meldeportal (see type "ReportingPortal") |
settings - StringFilter
|
Filter by settings (see type "ReportingPortal") |
settings_schema_version - StringFilter
|
Filter by settings_schema_version (see type "ReportingPortal") |
subdomain - StringFilter
|
Filter by subdomain (see type "ReportingPortal") |
Example
{
"ID_Cloud": NumberFilter,
"_and": [ReportingPortalsFilterInput],
"_or": [ReportingPortalsFilterInput],
"id_meldeportal": NumberFilter,
"settings": StringFilter,
"settings_schema_version": StringFilter,
"subdomain": StringFilter
}
ReportingPortalsOrderByInput
Fields
Input Field | Description |
---|---|
ID_Cloud - SortOrder
|
Sort by ID_Cloud (see type "ReportingPortal") |
id_meldeportal - SortOrder
|
Sort by id_meldeportal (see type "ReportingPortal") |
settings - SortOrder
|
Sort by settings (see type "ReportingPortal") |
settings_schema_version - SortOrder
|
Sort by settings_schema_version (see type "ReportingPortal") |
subdomain - SortOrder
|
Sort by subdomain (see type "ReportingPortal") |
Example
{
"ID_Cloud": "asc",
"id_meldeportal": "asc",
"settings": "asc",
"settings_schema_version": "asc",
"subdomain": "asc"
}
ReproductionType
Description
Taxa species reproduction types
Fields
Field Name | Description |
---|---|
Beschreibung - String
|
Reproduction type description |
Categories - [Category!]!
|
|
Arguments
|
|
Flag_1 - Boolean
|
Whether the reproduction type can be selected for taxa of category 1 (Amphibians/Reptiles). |
Flag_2 - Boolean
|
Whether the reproduction type can be selected for taxa of category 2 (Fish). |
Flag_3 - Boolean
|
Whether the reproduction type can be selected for taxa of category 3 (Mammals). |
Flag_4 - Boolean
|
Whether the reproduction type can be selected for taxa of category 4 (Birds). |
Flag_5 - Boolean
|
Whether the reproduction type can be selected for taxa of category 5 (Invertebrates). |
Flag_6 - Boolean
|
Whether the reproduction type can be selected for taxa of category 6 (Plants). |
Flag_7 - Boolean
|
Whether the reproduction type can be selected for taxa of category 7 (Funghi). |
Flag_Deleted - Boolean
|
Flag for deprecated reproduction types |
Flag_Short - Boolean
|
Whether the reproduction type is included in the short list of most common reproduction types. |
Flag_Sync - Boolean
|
Flag to indicate sync status |
Flag_Visible - Boolean
|
Whether the reproduction type is visible. |
GUID_Reproduktion - String!
|
Reproduction type GUID |
ID_Reproduktion - Int!
|
Reproduction type ID |
ID_Version - Int
|
Current version number |
ID_Wertigkeit - Int
|
|
Kuerzel - String
|
Reproduction type abbreviation |
Modul_1 - Boolean
|
|
Modul_2 - Boolean
|
|
Modul_3 - Boolean
|
|
Modul_4 - Boolean
|
|
Modul_5 - Boolean
|
|
Modul_6 - Boolean
|
|
Modul_7 - Boolean
|
|
Modul_8 - Boolean
|
|
Modul_9 - Boolean
|
|
Modul_10 - Boolean
|
|
Modul_11 - Boolean
|
|
Modul_12 - Boolean
|
|
Modul_13 - Boolean
|
|
Modul_14 - Boolean
|
|
Modul_15 - Boolean
|
|
RefID - Int
|
|
Reproduktion - String
|
Reproduction type name |
Example
{
"Beschreibung": "xyz789",
"Categories": [Category],
"Flag_1": false,
"Flag_2": true,
"Flag_3": false,
"Flag_4": false,
"Flag_5": true,
"Flag_6": false,
"Flag_7": true,
"Flag_Deleted": false,
"Flag_Short": true,
"Flag_Sync": true,
"Flag_Visible": true,
"GUID_Reproduktion": "xyz789",
"ID_Reproduktion": 987,
"ID_Version": 123,
"ID_Wertigkeit": 987,
"Kuerzel": "abc123",
"Modul_1": true,
"Modul_2": false,
"Modul_3": false,
"Modul_4": false,
"Modul_5": true,
"Modul_6": true,
"Modul_7": true,
"Modul_8": true,
"Modul_9": false,
"Modul_10": true,
"Modul_11": false,
"Modul_12": true,
"Modul_13": false,
"Modul_14": true,
"Modul_15": false,
"RefID": 123,
"Reproduktion": "xyz789"
}
ReproductionTypesFilterInput
Fields
Input Field | Description |
---|---|
Beschreibung - StringFilter
|
Filter by Beschreibung (see type "ReproductionType") |
Flag_1 - BooleanFilter
|
Filter by Flag_1 (see type "ReproductionType") |
Flag_2 - BooleanFilter
|
Filter by Flag_2 (see type "ReproductionType") |
Flag_3 - BooleanFilter
|
Filter by Flag_3 (see type "ReproductionType") |
Flag_4 - BooleanFilter
|
Filter by Flag_4 (see type "ReproductionType") |
Flag_5 - BooleanFilter
|
Filter by Flag_5 (see type "ReproductionType") |
Flag_6 - BooleanFilter
|
Filter by Flag_6 (see type "ReproductionType") |
Flag_7 - BooleanFilter
|
Filter by Flag_7 (see type "ReproductionType") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "ReproductionType") |
Flag_Short - BooleanFilter
|
Filter by Flag_Short (see type "ReproductionType") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "ReproductionType") |
Flag_Visible - BooleanFilter
|
Filter by Flag_Visible (see type "ReproductionType") |
GUID_Reproduktion - StringFilter
|
Filter by GUID_Reproduktion (see type "ReproductionType") |
ID_Reproduktion - NumberFilter
|
Filter by ID_Reproduktion (see type "ReproductionType") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "ReproductionType") |
ID_Wertigkeit - NumberFilter
|
Filter by ID_Wertigkeit (see type "ReproductionType") |
Kuerzel - StringFilter
|
Filter by Kuerzel (see type "ReproductionType") |
Modul_1 - BooleanFilter
|
Filter by Modul_1 (see type "ReproductionType") |
Modul_2 - BooleanFilter
|
Filter by Modul_2 (see type "ReproductionType") |
Modul_3 - BooleanFilter
|
Filter by Modul_3 (see type "ReproductionType") |
Modul_4 - BooleanFilter
|
Filter by Modul_4 (see type "ReproductionType") |
Modul_5 - BooleanFilter
|
Filter by Modul_5 (see type "ReproductionType") |
Modul_6 - BooleanFilter
|
Filter by Modul_6 (see type "ReproductionType") |
Modul_7 - BooleanFilter
|
Filter by Modul_7 (see type "ReproductionType") |
Modul_8 - BooleanFilter
|
Filter by Modul_8 (see type "ReproductionType") |
Modul_9 - BooleanFilter
|
Filter by Modul_9 (see type "ReproductionType") |
Modul_10 - BooleanFilter
|
Filter by Modul_10 (see type "ReproductionType") |
Modul_11 - BooleanFilter
|
Filter by Modul_11 (see type "ReproductionType") |
Modul_12 - BooleanFilter
|
Filter by Modul_12 (see type "ReproductionType") |
Modul_13 - BooleanFilter
|
Filter by Modul_13 (see type "ReproductionType") |
Modul_14 - BooleanFilter
|
Filter by Modul_14 (see type "ReproductionType") |
Modul_15 - BooleanFilter
|
Filter by Modul_15 (see type "ReproductionType") |
RefID - NumberFilter
|
Filter by RefID (see type "ReproductionType") |
Reproduktion - StringFilter
|
Filter by Reproduktion (see type "ReproductionType") |
_and - [ReproductionTypesFilterInput!]
|
Logical AND operator |
_or - [ReproductionTypesFilterInput!]
|
Logical OR operator |
Example
{
"Beschreibung": StringFilter,
"Flag_1": BooleanFilter,
"Flag_2": BooleanFilter,
"Flag_3": BooleanFilter,
"Flag_4": BooleanFilter,
"Flag_5": BooleanFilter,
"Flag_6": BooleanFilter,
"Flag_7": BooleanFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Short": BooleanFilter,
"Flag_Sync": BooleanFilter,
"Flag_Visible": BooleanFilter,
"GUID_Reproduktion": StringFilter,
"ID_Reproduktion": NumberFilter,
"ID_Version": NumberFilter,
"ID_Wertigkeit": NumberFilter,
"Kuerzel": StringFilter,
"Modul_1": BooleanFilter,
"Modul_2": BooleanFilter,
"Modul_3": BooleanFilter,
"Modul_4": BooleanFilter,
"Modul_5": BooleanFilter,
"Modul_6": BooleanFilter,
"Modul_7": BooleanFilter,
"Modul_8": BooleanFilter,
"Modul_9": BooleanFilter,
"Modul_10": BooleanFilter,
"Modul_11": BooleanFilter,
"Modul_12": BooleanFilter,
"Modul_13": BooleanFilter,
"Modul_14": BooleanFilter,
"Modul_15": BooleanFilter,
"RefID": NumberFilter,
"Reproduktion": StringFilter,
"_and": [ReproductionTypesFilterInput],
"_or": [ReproductionTypesFilterInput]
}
ReproductionTypesOrderByInput
Fields
Input Field | Description |
---|---|
Beschreibung - SortOrder
|
Sort by Beschreibung (see type "ReproductionType") |
Flag_1 - SortOrder
|
Sort by Flag_1 (see type "ReproductionType") |
Flag_2 - SortOrder
|
Sort by Flag_2 (see type "ReproductionType") |
Flag_3 - SortOrder
|
Sort by Flag_3 (see type "ReproductionType") |
Flag_4 - SortOrder
|
Sort by Flag_4 (see type "ReproductionType") |
Flag_5 - SortOrder
|
Sort by Flag_5 (see type "ReproductionType") |
Flag_6 - SortOrder
|
Sort by Flag_6 (see type "ReproductionType") |
Flag_7 - SortOrder
|
Sort by Flag_7 (see type "ReproductionType") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "ReproductionType") |
Flag_Short - SortOrder
|
Sort by Flag_Short (see type "ReproductionType") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "ReproductionType") |
Flag_Visible - SortOrder
|
Sort by Flag_Visible (see type "ReproductionType") |
GUID_Reproduktion - SortOrder
|
Sort by GUID_Reproduktion (see type "ReproductionType") |
ID_Reproduktion - SortOrder
|
Sort by ID_Reproduktion (see type "ReproductionType") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "ReproductionType") |
ID_Wertigkeit - SortOrder
|
Sort by ID_Wertigkeit (see type "ReproductionType") |
Kuerzel - SortOrder
|
Sort by Kuerzel (see type "ReproductionType") |
Modul_1 - SortOrder
|
Sort by Modul_1 (see type "ReproductionType") |
Modul_2 - SortOrder
|
Sort by Modul_2 (see type "ReproductionType") |
Modul_3 - SortOrder
|
Sort by Modul_3 (see type "ReproductionType") |
Modul_4 - SortOrder
|
Sort by Modul_4 (see type "ReproductionType") |
Modul_5 - SortOrder
|
Sort by Modul_5 (see type "ReproductionType") |
Modul_6 - SortOrder
|
Sort by Modul_6 (see type "ReproductionType") |
Modul_7 - SortOrder
|
Sort by Modul_7 (see type "ReproductionType") |
Modul_8 - SortOrder
|
Sort by Modul_8 (see type "ReproductionType") |
Modul_9 - SortOrder
|
Sort by Modul_9 (see type "ReproductionType") |
Modul_10 - SortOrder
|
Sort by Modul_10 (see type "ReproductionType") |
Modul_11 - SortOrder
|
Sort by Modul_11 (see type "ReproductionType") |
Modul_12 - SortOrder
|
Sort by Modul_12 (see type "ReproductionType") |
Modul_13 - SortOrder
|
Sort by Modul_13 (see type "ReproductionType") |
Modul_14 - SortOrder
|
Sort by Modul_14 (see type "ReproductionType") |
Modul_15 - SortOrder
|
Sort by Modul_15 (see type "ReproductionType") |
RefID - SortOrder
|
Sort by RefID (see type "ReproductionType") |
Reproduktion - SortOrder
|
Sort by Reproduktion (see type "ReproductionType") |
Example
{
"Beschreibung": "asc",
"Flag_1": "asc",
"Flag_2": "asc",
"Flag_3": "asc",
"Flag_4": "asc",
"Flag_5": "asc",
"Flag_6": "asc",
"Flag_7": "asc",
"Flag_Deleted": "asc",
"Flag_Short": "asc",
"Flag_Sync": "asc",
"Flag_Visible": "asc",
"GUID_Reproduktion": "asc",
"ID_Reproduktion": "asc",
"ID_Version": "asc",
"ID_Wertigkeit": "asc",
"Kuerzel": "asc",
"Modul_1": "asc",
"Modul_2": "asc",
"Modul_3": "asc",
"Modul_4": "asc",
"Modul_5": "asc",
"Modul_6": "asc",
"Modul_7": "asc",
"Modul_8": "asc",
"Modul_9": "asc",
"Modul_10": "asc",
"Modul_11": "asc",
"Modul_12": "asc",
"Modul_13": "asc",
"Modul_14": "asc",
"Modul_15": "asc",
"RefID": "asc",
"Reproduktion": "asc"
}
SortOrder
Values
Enum Value | Description |
---|---|
|
|
|
Example
"asc"
Species
Description
Taxa species
Fields
Field Name | Description |
---|---|
Art_BirdBase - String
|
Name of the species in BirdBase |
Art_Deutsch - String
|
German name of the species |
Art_English - String
|
English name of the species |
Art_French - String
|
French name of the species |
Art_German - String
|
German name of the species |
Art_Kuerzel - String
|
Short identifier of the species |
Art_Kuerzel_BirdBase - String
|
Short name of the species in BirdBase |
Art_Spanish - String
|
Spanish name of the species |
Art_Subgenus - String
|
Scientific name of the species including the subgenus name (lat.) |
Art_Wissenschaftlich - String
|
Scientific name of the species (lat.) |
Autor - String
|
Author of the scientific species name |
BL20001 - Boolean
|
Species occurence in Baden-Wuerttember |
BL20002 - Boolean
|
Species occurence in Bavaria |
BL20003 - Boolean
|
Species occurence in Brandenburg |
BL20004 - Boolean
|
Species occurence in Bremen |
BL20005 - Boolean
|
Species occurence in Hamburg |
BL20006 - Boolean
|
Species occurence in Hesse |
BL20007 - Boolean
|
Species occurence in Mecklenburg-Western Pomerania |
BL20008 - Boolean
|
Species occurence in Lower Saxony |
BL20009 - Boolean
|
Species occurence in North Rhine-Westphalia |
BL20010 - Boolean
|
Species occurence in Rhineland-Palatinate |
BL20011 - Boolean
|
Species occurence in Saarland |
BL20012 - Boolean
|
Species occurence in Saxony |
BL20013 - Boolean
|
Species occurence in Saxony-Anhalt |
BL20014 - Boolean
|
Species occurence in Schleswig-Holstein |
BL20015 - Boolean
|
Species occurence in Thuringia |
BL20016 - Boolean
|
Species occurence in Germany |
BL20017 - Boolean
|
Species occurence in Berlin |
BNatSchG - String
|
Protection status under the Federal Nature Conservation Act |
BfN_Code - String
|
Species code of the Federal Agency for Nature Conservation (BfN) |
Category - Category
|
|
Code_EU - String
|
German name of the group |
EUNomen - String
|
Fauna Europaea LSID |
Euring - String
|
EURING Exchange Code for European bird ringing |
FFH - String
|
Annex of the European Habitats Directive |
FFHHabitatTypeSpecies - FFHHabitatTypeSpecies
|
|
FFHSpeciesCriteria - [FFHSpeciesCriterion!]!
|
|
Arguments
|
|
Flag_Deleted - Boolean
|
Flag for deprecated species |
Flag_Sync - Boolean
|
Flag to indicate sync status |
Group - Group
|
|
ID_Art - Int!
|
Species ID |
ID_ArtenTyp - Int
|
ID of the taxa type (e.g. order, genus, family) |
ID_Gruppe - Int
|
Parent group ID |
ID_Kategorie - Int
|
Parent category ID |
ID_Parent - Int
|
Parent species ID |
ID_Secundum - Int
|
ID of the third party reference entry to the naming and classification of the species |
ID_TaxaStatus - Int
|
Indicates whether it is a valid taxon (0), invalid taxon (1) or a synonym (2) |
ID_Untergruppe - Int
|
Parent subgroup ID |
ID_Version - Int
|
Current version number |
ParentSpecies - Species
|
|
RL20001 - String
|
Status in the Baden-Wuerttemberg Red List |
RL20002 - String
|
Status in the Bavarian Red List |
RL20003 - String
|
Status in the Brandenburg Red List |
RL20004 - String
|
Status in the Bremen Red List |
RL20005 - String
|
Status in the Hamburg Red List |
RL20006 - String
|
Status in the Hesse Red List |
RL20007 - String
|
Status in the Mecklenburg-Western Pomerania Red List |
RL20008 - String
|
Status in the Lower Saxony Red List |
RL20009 - String
|
Status in the North Rhine-Westphalia Red List |
RL20010 - String
|
Status in the Rhineland-Palatinate Red List |
RL20011 - String
|
Status in the Saarland Red List |
RL20012 - String
|
Status in the Saxony Red List |
RL20013 - String
|
Status in the Saxony-Anhalt Red List |
RL20014 - String
|
Status in the Schleswig-Holstein Red List |
RL20015 - String
|
Status in the Thuringia Red List |
RL20016 - String
|
Status in the German Red List |
RL20017 - String
|
Status in the Berlin Red List |
RefID - Int
|
|
Species - [Species!]
|
|
SpeciesDetails - [SpeciesDetail!]!
|
|
Arguments
|
|
SpeciesFederalStatesMemo - SpeciesFederalStatesMemo
|
|
SpeciesImages - [SpeciesImage!]!
|
|
Arguments
|
|
SpeciesMemo - SpeciesMemo
|
|
SpeciesPhenograms - [SpeciesPhenogram!]!
|
|
Arguments
|
|
Subgroup - Subgroup
|
|
SysCode - String
|
For the systematic classification of species for species experts |
SystemCode - String
|
Internal code that represents the position in the species tree (Category-Group-Subgroup-...-Genus-Species) |
TaxonomicRank - TaxonomicRank
|
|
wwSysCode - String
|
For the systematic classification of species for species experts |
Example
{
"Art_BirdBase": "xyz789",
"Art_Deutsch": "abc123",
"Art_English": "abc123",
"Art_French": "abc123",
"Art_German": "abc123",
"Art_Kuerzel": "xyz789",
"Art_Kuerzel_BirdBase": "abc123",
"Art_Spanish": "abc123",
"Art_Subgenus": "abc123",
"Art_Wissenschaftlich": "abc123",
"Autor": "xyz789",
"BL20001": true,
"BL20002": true,
"BL20003": true,
"BL20004": true,
"BL20005": false,
"BL20006": false,
"BL20007": true,
"BL20008": true,
"BL20009": true,
"BL20010": false,
"BL20011": true,
"BL20012": false,
"BL20013": false,
"BL20014": true,
"BL20015": true,
"BL20016": false,
"BL20017": true,
"BNatSchG": "abc123",
"BfN_Code": "abc123",
"Category": Category,
"Code_EU": "xyz789",
"EUNomen": "abc123",
"Euring": "abc123",
"FFH": "abc123",
"FFHHabitatTypeSpecies": FFHHabitatTypeSpecies,
"FFHSpeciesCriteria": [FFHSpeciesCriterion],
"Flag_Deleted": false,
"Flag_Sync": false,
"Group": Group,
"ID_Art": 987,
"ID_ArtenTyp": 123,
"ID_Gruppe": 123,
"ID_Kategorie": 987,
"ID_Parent": 123,
"ID_Secundum": 987,
"ID_TaxaStatus": 987,
"ID_Untergruppe": 123,
"ID_Version": 987,
"ParentSpecies": Species,
"RL20001": "abc123",
"RL20002": "xyz789",
"RL20003": "abc123",
"RL20004": "abc123",
"RL20005": "abc123",
"RL20006": "abc123",
"RL20007": "xyz789",
"RL20008": "xyz789",
"RL20009": "abc123",
"RL20010": "abc123",
"RL20011": "abc123",
"RL20012": "xyz789",
"RL20013": "xyz789",
"RL20014": "abc123",
"RL20015": "abc123",
"RL20016": "xyz789",
"RL20017": "xyz789",
"RefID": 987,
"Species": [Species],
"SpeciesDetails": [SpeciesDetail],
"SpeciesFederalStatesMemo": SpeciesFederalStatesMemo,
"SpeciesImages": [SpeciesImage],
"SpeciesMemo": SpeciesMemo,
"SpeciesPhenograms": [SpeciesPhenogram],
"Subgroup": Subgroup,
"SysCode": "abc123",
"SystemCode": "abc123",
"TaxonomicRank": TaxonomicRank,
"wwSysCode": "abc123"
}
SpeciesDetail
Description
Species detail
Fields
Field Name | Description |
---|---|
Flag_Deleted - Boolean
|
Deleted flag |
Flag_Sync - Boolean
|
Sync flag |
Flag_Visible - Boolean
|
Visible flag |
ID_Art - Int!
|
Species ID |
ID_ArtenDetails - Int!
|
Species Detail ID |
ID_Bundesland - Int!
|
Federal State ID |
ID_Referenz - Int!
|
Reference ID |
ID_Version - Int
|
Version ID |
Species - Species
|
|
SpeciesDetailReference - SpeciesDetailReference
|
|
SpeciesDetailType - SpeciesDetailType
|
|
Wert_Bit - Boolean
|
Bit value |
Wert_Long - Int
|
Long value |
Wert_Memo - String
|
Memo value |
Wert_String - String
|
String value |
Example
{
"Flag_Deleted": false,
"Flag_Sync": false,
"Flag_Visible": true,
"ID_Art": 123,
"ID_ArtenDetails": 123,
"ID_Bundesland": 123,
"ID_Referenz": 987,
"ID_Version": 987,
"Species": Species,
"SpeciesDetailReference": SpeciesDetailReference,
"SpeciesDetailType": SpeciesDetailType,
"Wert_Bit": false,
"Wert_Long": 987,
"Wert_Memo": "xyz789",
"Wert_String": "abc123"
}
SpeciesDetailGroup
Description
Species detail group
Example
{
"ArtenDetailGruppe": "xyz789",
"Flag_Deleted": true,
"Flag_Sync": true,
"ID_ArtenDetailGruppe": 987,
"ID_Sort": 123,
"ID_Version": 123,
"SpeciesDetailTypes": [SpeciesDetailType]
}
SpeciesDetailGroupsFilterInput
Fields
Input Field | Description |
---|---|
ArtenDetailGruppe - StringFilter
|
Filter by ArtenDetailGruppe (see type "SpeciesDetailGroup") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "SpeciesDetailGroup") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "SpeciesDetailGroup") |
ID_ArtenDetailGruppe - NumberFilter
|
Filter by ID_ArtenDetailGruppe (see type "SpeciesDetailGroup") |
ID_Sort - NumberFilter
|
Filter by ID_Sort (see type "SpeciesDetailGroup") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "SpeciesDetailGroup") |
_and - [SpeciesDetailGroupsFilterInput!]
|
Logical AND operator |
_or - [SpeciesDetailGroupsFilterInput!]
|
Logical OR operator |
Example
{
"ArtenDetailGruppe": StringFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Sync": BooleanFilter,
"ID_ArtenDetailGruppe": NumberFilter,
"ID_Sort": NumberFilter,
"ID_Version": NumberFilter,
"_and": [SpeciesDetailGroupsFilterInput],
"_or": [SpeciesDetailGroupsFilterInput]
}
SpeciesDetailGroupsOrderByInput
Fields
Input Field | Description |
---|---|
ArtenDetailGruppe - SortOrder
|
Sort by ArtenDetailGruppe (see type "SpeciesDetailGroup") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "SpeciesDetailGroup") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "SpeciesDetailGroup") |
ID_ArtenDetailGruppe - SortOrder
|
Sort by ID_ArtenDetailGruppe (see type "SpeciesDetailGroup") |
ID_Sort - SortOrder
|
Sort by ID_Sort (see type "SpeciesDetailGroup") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "SpeciesDetailGroup") |
Example
{
"ArtenDetailGruppe": "asc",
"Flag_Deleted": "asc",
"Flag_Sync": "asc",
"ID_ArtenDetailGruppe": "asc",
"ID_Sort": "asc",
"ID_Version": "asc"
}
SpeciesDetailReference
Description
Species detail reference
Fields
Field Name | Description |
---|---|
Bemerkung - String
|
Remarks |
Bundesland - Int
|
Federal state |
Flag_Deleted - Boolean
|
Deleted flag |
Flag_Sync - Boolean
|
Sync flag |
ID_ArtenDetailReferenz - Int!
|
Species detail reference ID |
ID_Referenz - Int!
|
Reference ID |
ID_Sort - Int
|
Sort ID |
ID_Version - Int
|
Version ID |
Kuerzel - String
|
Abbreviation |
Referenz - String
|
Reference |
SpeciesDetails - [SpeciesDetail!]
|
Example
{
"Bemerkung": "abc123",
"Bundesland": 987,
"Flag_Deleted": false,
"Flag_Sync": true,
"ID_ArtenDetailReferenz": 987,
"ID_Referenz": 123,
"ID_Sort": 123,
"ID_Version": 123,
"Kuerzel": "xyz789",
"Referenz": "abc123",
"SpeciesDetails": [SpeciesDetail]
}
SpeciesDetailReferencesFilterInput
Fields
Input Field | Description |
---|---|
Bemerkung - StringFilter
|
Filter by Bemerkung (see type "SpeciesDetailReference") |
Bundesland - NumberFilter
|
Filter by Bundesland (see type "SpeciesDetailReference") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "SpeciesDetailReference") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "SpeciesDetailReference") |
ID_ArtenDetailReferenz - NumberFilter
|
Filter by ID_ArtenDetailReferenz (see type "SpeciesDetailReference") |
ID_Referenz - NumberFilter
|
Filter by ID_Referenz (see type "SpeciesDetailReference") |
ID_Sort - NumberFilter
|
Filter by ID_Sort (see type "SpeciesDetailReference") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "SpeciesDetailReference") |
Kuerzel - StringFilter
|
Filter by Kuerzel (see type "SpeciesDetailReference") |
Referenz - StringFilter
|
Filter by Referenz (see type "SpeciesDetailReference") |
_and - [SpeciesDetailReferencesFilterInput!]
|
Logical AND operator |
_or - [SpeciesDetailReferencesFilterInput!]
|
Logical OR operator |
Example
{
"Bemerkung": StringFilter,
"Bundesland": NumberFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Sync": BooleanFilter,
"ID_ArtenDetailReferenz": NumberFilter,
"ID_Referenz": NumberFilter,
"ID_Sort": NumberFilter,
"ID_Version": NumberFilter,
"Kuerzel": StringFilter,
"Referenz": StringFilter,
"_and": [SpeciesDetailReferencesFilterInput],
"_or": [SpeciesDetailReferencesFilterInput]
}
SpeciesDetailReferencesOrderByInput
Fields
Input Field | Description |
---|---|
Bemerkung - SortOrder
|
Sort by Bemerkung (see type "SpeciesDetailReference") |
Bundesland - SortOrder
|
Sort by Bundesland (see type "SpeciesDetailReference") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "SpeciesDetailReference") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "SpeciesDetailReference") |
ID_ArtenDetailReferenz - SortOrder
|
Sort by ID_ArtenDetailReferenz (see type "SpeciesDetailReference") |
ID_Referenz - SortOrder
|
Sort by ID_Referenz (see type "SpeciesDetailReference") |
ID_Sort - SortOrder
|
Sort by ID_Sort (see type "SpeciesDetailReference") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "SpeciesDetailReference") |
Kuerzel - SortOrder
|
Sort by Kuerzel (see type "SpeciesDetailReference") |
Referenz - SortOrder
|
Sort by Referenz (see type "SpeciesDetailReference") |
Example
{
"Bemerkung": "asc",
"Bundesland": "asc",
"Flag_Deleted": "asc",
"Flag_Sync": "asc",
"ID_ArtenDetailReferenz": "asc",
"ID_Referenz": "asc",
"ID_Sort": "asc",
"ID_Version": "asc",
"Kuerzel": "asc",
"Referenz": "asc"
}
SpeciesDetailType
Description
Species detail type
Fields
Field Name | Description |
---|---|
ArtenDetailTyp - String
|
Detail type name |
Bundesland - Int
|
Federal state |
Flag_1 - Boolean
|
Flag 1 |
Flag_2 - Boolean
|
Flag 2 |
Flag_3 - Boolean
|
Flag 3 |
Flag_4 - Boolean
|
Flag 4 |
Flag_5 - Boolean
|
Flag 5 |
Flag_6 - Boolean
|
Flag 6 |
Flag_7 - Boolean
|
Flag 7 |
Flag_AllowEdit - Boolean
|
Allow edit flag |
Flag_Deleted - Boolean
|
Deleted flag |
Flag_MultiValue - Boolean
|
Multi value flag |
Flag_Sync - Boolean
|
Sync flag |
Flag_Visible - Boolean
|
Visible flag |
ID_ArtenDetailGruppe - Int
|
Detail group ID |
ID_Referenz - Int!
|
Reference ID |
ID_Sort - Int
|
Sort ID |
ID_ValueTyp - Int
|
Value type ID |
ID_Version - Int
|
Version ID |
InfoText - String
|
Info text |
SpeciesDetailGroup - SpeciesDetailGroup
|
|
SpeciesDetails - [SpeciesDetail!]
|
Example
{
"ArtenDetailTyp": "xyz789",
"Bundesland": 123,
"Flag_1": true,
"Flag_2": false,
"Flag_3": true,
"Flag_4": true,
"Flag_5": false,
"Flag_6": true,
"Flag_7": true,
"Flag_AllowEdit": false,
"Flag_Deleted": true,
"Flag_MultiValue": false,
"Flag_Sync": false,
"Flag_Visible": false,
"ID_ArtenDetailGruppe": 987,
"ID_Referenz": 987,
"ID_Sort": 987,
"ID_ValueTyp": 123,
"ID_Version": 123,
"InfoText": "xyz789",
"SpeciesDetailGroup": SpeciesDetailGroup,
"SpeciesDetails": [SpeciesDetail]
}
SpeciesDetailTypesFilterInput
Fields
Input Field | Description |
---|---|
ArtenDetailTyp - StringFilter
|
Filter by ArtenDetailTyp (see type "SpeciesDetailType") |
Bundesland - NumberFilter
|
Filter by Bundesland (see type "SpeciesDetailType") |
Flag_1 - BooleanFilter
|
Filter by Flag_1 (see type "SpeciesDetailType") |
Flag_2 - BooleanFilter
|
Filter by Flag_2 (see type "SpeciesDetailType") |
Flag_3 - BooleanFilter
|
Filter by Flag_3 (see type "SpeciesDetailType") |
Flag_4 - BooleanFilter
|
Filter by Flag_4 (see type "SpeciesDetailType") |
Flag_5 - BooleanFilter
|
Filter by Flag_5 (see type "SpeciesDetailType") |
Flag_6 - BooleanFilter
|
Filter by Flag_6 (see type "SpeciesDetailType") |
Flag_7 - BooleanFilter
|
Filter by Flag_7 (see type "SpeciesDetailType") |
Flag_AllowEdit - BooleanFilter
|
Filter by Flag_AllowEdit (see type "SpeciesDetailType") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "SpeciesDetailType") |
Flag_MultiValue - BooleanFilter
|
Filter by Flag_MultiValue (see type "SpeciesDetailType") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "SpeciesDetailType") |
Flag_Visible - BooleanFilter
|
Filter by Flag_Visible (see type "SpeciesDetailType") |
ID_ArtenDetailGruppe - NumberFilter
|
Filter by ID_ArtenDetailGruppe (see type "SpeciesDetailType") |
ID_Referenz - NumberFilter
|
Filter by ID_Referenz (see type "SpeciesDetailType") |
ID_Sort - NumberFilter
|
Filter by ID_Sort (see type "SpeciesDetailType") |
ID_ValueTyp - NumberFilter
|
Filter by ID_ValueTyp (see type "SpeciesDetailType") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "SpeciesDetailType") |
InfoText - StringFilter
|
Filter by InfoText (see type "SpeciesDetailType") |
_and - [SpeciesDetailTypesFilterInput!]
|
Logical AND operator |
_or - [SpeciesDetailTypesFilterInput!]
|
Logical OR operator |
Example
{
"ArtenDetailTyp": StringFilter,
"Bundesland": NumberFilter,
"Flag_1": BooleanFilter,
"Flag_2": BooleanFilter,
"Flag_3": BooleanFilter,
"Flag_4": BooleanFilter,
"Flag_5": BooleanFilter,
"Flag_6": BooleanFilter,
"Flag_7": BooleanFilter,
"Flag_AllowEdit": BooleanFilter,
"Flag_Deleted": BooleanFilter,
"Flag_MultiValue": BooleanFilter,
"Flag_Sync": BooleanFilter,
"Flag_Visible": BooleanFilter,
"ID_ArtenDetailGruppe": NumberFilter,
"ID_Referenz": NumberFilter,
"ID_Sort": NumberFilter,
"ID_ValueTyp": NumberFilter,
"ID_Version": NumberFilter,
"InfoText": StringFilter,
"_and": [SpeciesDetailTypesFilterInput],
"_or": [SpeciesDetailTypesFilterInput]
}
SpeciesDetailTypesOrderByInput
Fields
Input Field | Description |
---|---|
ArtenDetailTyp - SortOrder
|
Sort by ArtenDetailTyp (see type "SpeciesDetailType") |
Bundesland - SortOrder
|
Sort by Bundesland (see type "SpeciesDetailType") |
Flag_1 - SortOrder
|
Sort by Flag_1 (see type "SpeciesDetailType") |
Flag_2 - SortOrder
|
Sort by Flag_2 (see type "SpeciesDetailType") |
Flag_3 - SortOrder
|
Sort by Flag_3 (see type "SpeciesDetailType") |
Flag_4 - SortOrder
|
Sort by Flag_4 (see type "SpeciesDetailType") |
Flag_5 - SortOrder
|
Sort by Flag_5 (see type "SpeciesDetailType") |
Flag_6 - SortOrder
|
Sort by Flag_6 (see type "SpeciesDetailType") |
Flag_7 - SortOrder
|
Sort by Flag_7 (see type "SpeciesDetailType") |
Flag_AllowEdit - SortOrder
|
Sort by Flag_AllowEdit (see type "SpeciesDetailType") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "SpeciesDetailType") |
Flag_MultiValue - SortOrder
|
Sort by Flag_MultiValue (see type "SpeciesDetailType") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "SpeciesDetailType") |
Flag_Visible - SortOrder
|
Sort by Flag_Visible (see type "SpeciesDetailType") |
ID_ArtenDetailGruppe - SortOrder
|
Sort by ID_ArtenDetailGruppe (see type "SpeciesDetailType") |
ID_Referenz - SortOrder
|
Sort by ID_Referenz (see type "SpeciesDetailType") |
ID_Sort - SortOrder
|
Sort by ID_Sort (see type "SpeciesDetailType") |
ID_ValueTyp - SortOrder
|
Sort by ID_ValueTyp (see type "SpeciesDetailType") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "SpeciesDetailType") |
InfoText - SortOrder
|
Sort by InfoText (see type "SpeciesDetailType") |
Example
{
"ArtenDetailTyp": "asc",
"Bundesland": "asc",
"Flag_1": "asc",
"Flag_2": "asc",
"Flag_3": "asc",
"Flag_4": "asc",
"Flag_5": "asc",
"Flag_6": "asc",
"Flag_7": "asc",
"Flag_AllowEdit": "asc",
"Flag_Deleted": "asc",
"Flag_MultiValue": "asc",
"Flag_Sync": "asc",
"Flag_Visible": "asc",
"ID_ArtenDetailGruppe": "asc",
"ID_Referenz": "asc",
"ID_Sort": "asc",
"ID_ValueTyp": "asc",
"ID_Version": "asc",
"InfoText": "asc"
}
SpeciesDetailsFilterInput
Fields
Input Field | Description |
---|---|
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "SpeciesDetail") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "SpeciesDetail") |
Flag_Visible - BooleanFilter
|
Filter by Flag_Visible (see type "SpeciesDetail") |
ID_Art - NumberFilter
|
Filter by ID_Art (see type "SpeciesDetail") |
ID_ArtenDetails - NumberFilter
|
Filter by ID_ArtenDetails (see type "SpeciesDetail") |
ID_Bundesland - NumberFilter
|
Filter by ID_Bundesland (see type "SpeciesDetail") |
ID_Referenz - NumberFilter
|
Filter by ID_Referenz (see type "SpeciesDetail") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "SpeciesDetail") |
Wert_Bit - BooleanFilter
|
Filter by Wert_Bit (see type "SpeciesDetail") |
Wert_Long - NumberFilter
|
Filter by Wert_Long (see type "SpeciesDetail") |
Wert_Memo - StringFilter
|
Filter by Wert_Memo (see type "SpeciesDetail") |
Wert_String - StringFilter
|
Filter by Wert_String (see type "SpeciesDetail") |
_and - [SpeciesDetailsFilterInput!]
|
Logical AND operator |
_or - [SpeciesDetailsFilterInput!]
|
Logical OR operator |
Example
{
"Flag_Deleted": BooleanFilter,
"Flag_Sync": BooleanFilter,
"Flag_Visible": BooleanFilter,
"ID_Art": NumberFilter,
"ID_ArtenDetails": NumberFilter,
"ID_Bundesland": NumberFilter,
"ID_Referenz": NumberFilter,
"ID_Version": NumberFilter,
"Wert_Bit": BooleanFilter,
"Wert_Long": NumberFilter,
"Wert_Memo": StringFilter,
"Wert_String": StringFilter,
"_and": [SpeciesDetailsFilterInput],
"_or": [SpeciesDetailsFilterInput]
}
SpeciesDetailsOrderByInput
Fields
Input Field | Description |
---|---|
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "SpeciesDetail") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "SpeciesDetail") |
Flag_Visible - SortOrder
|
Sort by Flag_Visible (see type "SpeciesDetail") |
ID_Art - SortOrder
|
Sort by ID_Art (see type "SpeciesDetail") |
ID_ArtenDetails - SortOrder
|
Sort by ID_ArtenDetails (see type "SpeciesDetail") |
ID_Bundesland - SortOrder
|
Sort by ID_Bundesland (see type "SpeciesDetail") |
ID_Referenz - SortOrder
|
Sort by ID_Referenz (see type "SpeciesDetail") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "SpeciesDetail") |
Wert_Bit - SortOrder
|
Sort by Wert_Bit (see type "SpeciesDetail") |
Wert_Long - SortOrder
|
Sort by Wert_Long (see type "SpeciesDetail") |
Wert_Memo - SortOrder
|
Sort by Wert_Memo (see type "SpeciesDetail") |
Wert_String - SortOrder
|
Sort by Wert_String (see type "SpeciesDetail") |
Example
{
"Flag_Deleted": "asc",
"Flag_Sync": "asc",
"Flag_Visible": "asc",
"ID_Art": "asc",
"ID_ArtenDetails": "asc",
"ID_Bundesland": "asc",
"ID_Referenz": "asc",
"ID_Version": "asc",
"Wert_Bit": "asc",
"Wert_Long": "asc",
"Wert_Memo": "asc",
"Wert_String": "asc"
}
SpeciesFederalStatesMemo
Description
Taxa species federal states memos
Fields
Field Name | Description |
---|---|
Bemerkung - String
|
Remarks |
BemerkungTaxonomie - String
|
Taxonomy remarks |
BiologieOekologie - String
|
Biology and ecology |
Erscheinung - String
|
Appearance |
Flag_Deleted - Boolean
|
Flag for deprecated behaviours |
Flag_Sync - Boolean
|
Flag to indicate sync status |
ID_Art - Int!
|
Species ID |
ID_ArtenMemoBundesland - Int!
|
Federal state memo ID |
ID_Bundesland - Int!
|
Federal state ID |
ID_Modus_BemerkungTaxonomie - Int
|
Mode for taxonomy remarks. Values: 0 (both memos displayed), 1 (only German memo), 2 (only federal state memo). |
ID_Modus_BiologieOekologie - Int
|
Mode for biology and ecology. Values: 0 (both memos displayed), 1 (only German memo), 2 (only federal state memo). |
ID_Modus_Erscheinung - Int
|
Mode for appearance. Values: 0 (both memos displayed), 1 (only German memo), 2 (only federal state memo). |
ID_Modus_Phaenologie - Int
|
Mode for phenology. Values: 0 (both memos displayed), 1 (only German memo), 2 (only federal state memo). |
ID_Modus_VerbreitungHerkunft - Int
|
Mode for distribution and origin. Values: 0 (both memos displayed), 1 (only German memo), 2 (only federal state memo). |
ID_Version - Int
|
Current version number |
Phaenologie - String
|
Phenology |
VerbreitungHerkunft - String
|
Distribution and origin |
Example
{
"Bemerkung": "xyz789",
"BemerkungTaxonomie": "xyz789",
"BiologieOekologie": "abc123",
"Erscheinung": "abc123",
"Flag_Deleted": false,
"Flag_Sync": true,
"ID_Art": 987,
"ID_ArtenMemoBundesland": 123,
"ID_Bundesland": 123,
"ID_Modus_BemerkungTaxonomie": 123,
"ID_Modus_BiologieOekologie": 987,
"ID_Modus_Erscheinung": 123,
"ID_Modus_Phaenologie": 987,
"ID_Modus_VerbreitungHerkunft": 123,
"ID_Version": 123,
"Phaenologie": "xyz789",
"VerbreitungHerkunft": "abc123"
}
SpeciesFederalStatesMemosFilterInput
Fields
Input Field | Description |
---|---|
Bemerkung - StringFilter
|
Filter by Bemerkung (see type "SpeciesFederalStatesMemo") |
BemerkungTaxonomie - StringFilter
|
Filter by BemerkungTaxonomie (see type "SpeciesFederalStatesMemo") |
BiologieOekologie - StringFilter
|
Filter by BiologieOekologie (see type "SpeciesFederalStatesMemo") |
Erscheinung - StringFilter
|
Filter by Erscheinung (see type "SpeciesFederalStatesMemo") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "SpeciesFederalStatesMemo") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "SpeciesFederalStatesMemo") |
ID_Art - NumberFilter
|
Filter by ID_Art (see type "SpeciesFederalStatesMemo") |
ID_ArtenMemoBundesland - NumberFilter
|
Filter by ID_ArtenMemoBundesland (see type "SpeciesFederalStatesMemo") |
ID_Bundesland - NumberFilter
|
Filter by ID_Bundesland (see type "SpeciesFederalStatesMemo") |
ID_Modus_BemerkungTaxonomie - NumberFilter
|
Filter by ID_Modus_BemerkungTaxonomie (see type "SpeciesFederalStatesMemo") |
ID_Modus_BiologieOekologie - NumberFilter
|
Filter by ID_Modus_BiologieOekologie (see type "SpeciesFederalStatesMemo") |
ID_Modus_Erscheinung - NumberFilter
|
Filter by ID_Modus_Erscheinung (see type "SpeciesFederalStatesMemo") |
ID_Modus_Phaenologie - NumberFilter
|
Filter by ID_Modus_Phaenologie (see type "SpeciesFederalStatesMemo") |
ID_Modus_VerbreitungHerkunft - NumberFilter
|
Filter by ID_Modus_VerbreitungHerkunft (see type "SpeciesFederalStatesMemo") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "SpeciesFederalStatesMemo") |
Phaenologie - StringFilter
|
Filter by Phaenologie (see type "SpeciesFederalStatesMemo") |
VerbreitungHerkunft - StringFilter
|
Filter by VerbreitungHerkunft (see type "SpeciesFederalStatesMemo") |
_and - [SpeciesFederalStatesMemosFilterInput!]
|
Logical AND operator |
_or - [SpeciesFederalStatesMemosFilterInput!]
|
Logical OR operator |
Example
{
"Bemerkung": StringFilter,
"BemerkungTaxonomie": StringFilter,
"BiologieOekologie": StringFilter,
"Erscheinung": StringFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Sync": BooleanFilter,
"ID_Art": NumberFilter,
"ID_ArtenMemoBundesland": NumberFilter,
"ID_Bundesland": NumberFilter,
"ID_Modus_BemerkungTaxonomie": NumberFilter,
"ID_Modus_BiologieOekologie": NumberFilter,
"ID_Modus_Erscheinung": NumberFilter,
"ID_Modus_Phaenologie": NumberFilter,
"ID_Modus_VerbreitungHerkunft": NumberFilter,
"ID_Version": NumberFilter,
"Phaenologie": StringFilter,
"VerbreitungHerkunft": StringFilter,
"_and": [SpeciesFederalStatesMemosFilterInput],
"_or": [SpeciesFederalStatesMemosFilterInput]
}
SpeciesFederalStatesMemosOrderByInput
Fields
Input Field | Description |
---|---|
Bemerkung - SortOrder
|
Sort by Bemerkung (see type "SpeciesFederalStatesMemo") |
BemerkungTaxonomie - SortOrder
|
Sort by BemerkungTaxonomie (see type "SpeciesFederalStatesMemo") |
BiologieOekologie - SortOrder
|
Sort by BiologieOekologie (see type "SpeciesFederalStatesMemo") |
Erscheinung - SortOrder
|
Sort by Erscheinung (see type "SpeciesFederalStatesMemo") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "SpeciesFederalStatesMemo") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "SpeciesFederalStatesMemo") |
ID_Art - SortOrder
|
Sort by ID_Art (see type "SpeciesFederalStatesMemo") |
ID_ArtenMemoBundesland - SortOrder
|
Sort by ID_ArtenMemoBundesland (see type "SpeciesFederalStatesMemo") |
ID_Bundesland - SortOrder
|
Sort by ID_Bundesland (see type "SpeciesFederalStatesMemo") |
ID_Modus_BemerkungTaxonomie - SortOrder
|
Sort by ID_Modus_BemerkungTaxonomie (see type "SpeciesFederalStatesMemo") |
ID_Modus_BiologieOekologie - SortOrder
|
Sort by ID_Modus_BiologieOekologie (see type "SpeciesFederalStatesMemo") |
ID_Modus_Erscheinung - SortOrder
|
Sort by ID_Modus_Erscheinung (see type "SpeciesFederalStatesMemo") |
ID_Modus_Phaenologie - SortOrder
|
Sort by ID_Modus_Phaenologie (see type "SpeciesFederalStatesMemo") |
ID_Modus_VerbreitungHerkunft - SortOrder
|
Sort by ID_Modus_VerbreitungHerkunft (see type "SpeciesFederalStatesMemo") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "SpeciesFederalStatesMemo") |
Phaenologie - SortOrder
|
Sort by Phaenologie (see type "SpeciesFederalStatesMemo") |
VerbreitungHerkunft - SortOrder
|
Sort by VerbreitungHerkunft (see type "SpeciesFederalStatesMemo") |
Example
{
"Bemerkung": "asc",
"BemerkungTaxonomie": "asc",
"BiologieOekologie": "asc",
"Erscheinung": "asc",
"Flag_Deleted": "asc",
"Flag_Sync": "asc",
"ID_Art": "asc",
"ID_ArtenMemoBundesland": "asc",
"ID_Bundesland": "asc",
"ID_Modus_BemerkungTaxonomie": "asc",
"ID_Modus_BiologieOekologie": "asc",
"ID_Modus_Erscheinung": "asc",
"ID_Modus_Phaenologie": "asc",
"ID_Modus_VerbreitungHerkunft": "asc",
"ID_Version": "asc",
"Phaenologie": "asc",
"VerbreitungHerkunft": "asc"
}
SpeciesFilterInput
Fields
Input Field | Description |
---|---|
Art_BirdBase - StringFilter
|
Filter by Art_BirdBase (see type "Species") |
Art_Deutsch - StringFilter
|
Filter by Art_Deutsch (see type "Species") |
Art_English - StringFilter
|
Filter by Art_English (see type "Species") |
Art_French - StringFilter
|
Filter by Art_French (see type "Species") |
Art_German - StringFilter
|
Filter by Art_German (see type "Species") |
Art_Kuerzel - StringFilter
|
Filter by Art_Kuerzel (see type "Species") |
Art_Kuerzel_BirdBase - StringFilter
|
Filter by Art_Kuerzel_BirdBase (see type "Species") |
Art_Spanish - StringFilter
|
Filter by Art_Spanish (see type "Species") |
Art_Subgenus - StringFilter
|
Filter by Art_Subgenus (see type "Species") |
Art_Wissenschaftlich - StringFilter
|
Filter by Art_Wissenschaftlich (see type "Species") |
Autor - StringFilter
|
Filter by Autor (see type "Species") |
BL20001 - BooleanFilter
|
Filter by BL20001 (see type "Species") |
BL20002 - BooleanFilter
|
Filter by BL20002 (see type "Species") |
BL20003 - BooleanFilter
|
Filter by BL20003 (see type "Species") |
BL20004 - BooleanFilter
|
Filter by BL20004 (see type "Species") |
BL20005 - BooleanFilter
|
Filter by BL20005 (see type "Species") |
BL20006 - BooleanFilter
|
Filter by BL20006 (see type "Species") |
BL20007 - BooleanFilter
|
Filter by BL20007 (see type "Species") |
BL20008 - BooleanFilter
|
Filter by BL20008 (see type "Species") |
BL20009 - BooleanFilter
|
Filter by BL20009 (see type "Species") |
BL20010 - BooleanFilter
|
Filter by BL20010 (see type "Species") |
BL20011 - BooleanFilter
|
Filter by BL20011 (see type "Species") |
BL20012 - BooleanFilter
|
Filter by BL20012 (see type "Species") |
BL20013 - BooleanFilter
|
Filter by BL20013 (see type "Species") |
BL20014 - BooleanFilter
|
Filter by BL20014 (see type "Species") |
BL20015 - BooleanFilter
|
Filter by BL20015 (see type "Species") |
BL20016 - BooleanFilter
|
Filter by BL20016 (see type "Species") |
BL20017 - BooleanFilter
|
Filter by BL20017 (see type "Species") |
BNatSchG - StringFilter
|
Filter by BNatSchG (see type "Species") |
BfN_Code - StringFilter
|
Filter by BfN_Code (see type "Species") |
Code_EU - StringFilter
|
Filter by Code_EU (see type "Species") |
EUNomen - StringFilter
|
Filter by EUNomen (see type "Species") |
Euring - StringFilter
|
Filter by Euring (see type "Species") |
FFH - StringFilter
|
Filter by FFH (see type "Species") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "Species") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "Species") |
ID_Art - NumberFilter
|
Filter by ID_Art (see type "Species") |
ID_ArtenTyp - NumberFilter
|
Filter by ID_ArtenTyp (see type "Species") |
ID_Gruppe - NumberFilter
|
Filter by ID_Gruppe (see type "Species") |
ID_Kategorie - NumberFilter
|
Filter by ID_Kategorie (see type "Species") |
ID_Parent - NumberFilter
|
Filter by ID_Parent (see type "Species") |
ID_Secundum - NumberFilter
|
Filter by ID_Secundum (see type "Species") |
ID_TaxaStatus - NumberFilter
|
Filter by ID_TaxaStatus (see type "Species") |
ID_Untergruppe - NumberFilter
|
Filter by ID_Untergruppe (see type "Species") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "Species") |
RL20001 - StringFilter
|
Filter by RL20001 (see type "Species") |
RL20002 - StringFilter
|
Filter by RL20002 (see type "Species") |
RL20003 - StringFilter
|
Filter by RL20003 (see type "Species") |
RL20004 - StringFilter
|
Filter by RL20004 (see type "Species") |
RL20005 - StringFilter
|
Filter by RL20005 (see type "Species") |
RL20006 - StringFilter
|
Filter by RL20006 (see type "Species") |
RL20007 - StringFilter
|
Filter by RL20007 (see type "Species") |
RL20008 - StringFilter
|
Filter by RL20008 (see type "Species") |
RL20009 - StringFilter
|
Filter by RL20009 (see type "Species") |
RL20010 - StringFilter
|
Filter by RL20010 (see type "Species") |
RL20011 - StringFilter
|
Filter by RL20011 (see type "Species") |
RL20012 - StringFilter
|
Filter by RL20012 (see type "Species") |
RL20013 - StringFilter
|
Filter by RL20013 (see type "Species") |
RL20014 - StringFilter
|
Filter by RL20014 (see type "Species") |
RL20015 - StringFilter
|
Filter by RL20015 (see type "Species") |
RL20016 - StringFilter
|
Filter by RL20016 (see type "Species") |
RL20017 - StringFilter
|
Filter by RL20017 (see type "Species") |
RefID - NumberFilter
|
Filter by RefID (see type "Species") |
SysCode - StringFilter
|
Filter by SysCode (see type "Species") |
SystemCode - StringFilter
|
Filter by SystemCode (see type "Species") |
_and - [SpeciesFilterInput!]
|
Logical AND operator |
_or - [SpeciesFilterInput!]
|
Logical OR operator |
wwSysCode - StringFilter
|
Filter by wwSysCode (see type "Species") |
Example
{
"Art_BirdBase": StringFilter,
"Art_Deutsch": StringFilter,
"Art_English": StringFilter,
"Art_French": StringFilter,
"Art_German": StringFilter,
"Art_Kuerzel": StringFilter,
"Art_Kuerzel_BirdBase": StringFilter,
"Art_Spanish": StringFilter,
"Art_Subgenus": StringFilter,
"Art_Wissenschaftlich": StringFilter,
"Autor": StringFilter,
"BL20001": BooleanFilter,
"BL20002": BooleanFilter,
"BL20003": BooleanFilter,
"BL20004": BooleanFilter,
"BL20005": BooleanFilter,
"BL20006": BooleanFilter,
"BL20007": BooleanFilter,
"BL20008": BooleanFilter,
"BL20009": BooleanFilter,
"BL20010": BooleanFilter,
"BL20011": BooleanFilter,
"BL20012": BooleanFilter,
"BL20013": BooleanFilter,
"BL20014": BooleanFilter,
"BL20015": BooleanFilter,
"BL20016": BooleanFilter,
"BL20017": BooleanFilter,
"BNatSchG": StringFilter,
"BfN_Code": StringFilter,
"Code_EU": StringFilter,
"EUNomen": StringFilter,
"Euring": StringFilter,
"FFH": StringFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Sync": BooleanFilter,
"ID_Art": NumberFilter,
"ID_ArtenTyp": NumberFilter,
"ID_Gruppe": NumberFilter,
"ID_Kategorie": NumberFilter,
"ID_Parent": NumberFilter,
"ID_Secundum": NumberFilter,
"ID_TaxaStatus": NumberFilter,
"ID_Untergruppe": NumberFilter,
"ID_Version": NumberFilter,
"RL20001": StringFilter,
"RL20002": StringFilter,
"RL20003": StringFilter,
"RL20004": StringFilter,
"RL20005": StringFilter,
"RL20006": StringFilter,
"RL20007": StringFilter,
"RL20008": StringFilter,
"RL20009": StringFilter,
"RL20010": StringFilter,
"RL20011": StringFilter,
"RL20012": StringFilter,
"RL20013": StringFilter,
"RL20014": StringFilter,
"RL20015": StringFilter,
"RL20016": StringFilter,
"RL20017": StringFilter,
"RefID": NumberFilter,
"SysCode": StringFilter,
"SystemCode": StringFilter,
"_and": [SpeciesFilterInput],
"_or": [SpeciesFilterInput],
"wwSysCode": StringFilter
}
SpeciesImage
Description
Species image
Fields
Field Name | Description |
---|---|
Bemerkungen - String
|
Remarks |
Copyright - String
|
Copyright |
FileName - String!
|
File name |
Flag_Deleted - Boolean
|
Deleted flag |
Flag_Sync - Boolean
|
Sync flag |
ID_Art - Int!
|
Species ID |
ID_ArtenImage - Int!
|
Species Image ID |
ID_Bundesland - Int
|
Federal State ID |
ID_ImageType - Int!
|
Image Type ID |
ID_Version - Int
|
Version ID |
Species - Species
|
Example
{
"Bemerkungen": "abc123",
"Copyright": "xyz789",
"FileName": "xyz789",
"Flag_Deleted": false,
"Flag_Sync": false,
"ID_Art": 987,
"ID_ArtenImage": 123,
"ID_Bundesland": 987,
"ID_ImageType": 123,
"ID_Version": 987,
"Species": Species
}
SpeciesImagesFilterInput
Fields
Input Field | Description |
---|---|
Bemerkungen - StringFilter
|
Filter by Bemerkungen (see type "SpeciesImage") |
Copyright - StringFilter
|
Filter by Copyright (see type "SpeciesImage") |
FileName - StringFilter
|
Filter by FileName (see type "SpeciesImage") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "SpeciesImage") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "SpeciesImage") |
ID_Art - NumberFilter
|
Filter by ID_Art (see type "SpeciesImage") |
ID_ArtenImage - NumberFilter
|
Filter by ID_ArtenImage (see type "SpeciesImage") |
ID_Bundesland - NumberFilter
|
Filter by ID_Bundesland (see type "SpeciesImage") |
ID_ImageType - NumberFilter
|
Filter by ID_ImageType (see type "SpeciesImage") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "SpeciesImage") |
_and - [SpeciesImagesFilterInput!]
|
Logical AND operator |
_or - [SpeciesImagesFilterInput!]
|
Logical OR operator |
Example
{
"Bemerkungen": StringFilter,
"Copyright": StringFilter,
"FileName": StringFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Sync": BooleanFilter,
"ID_Art": NumberFilter,
"ID_ArtenImage": NumberFilter,
"ID_Bundesland": NumberFilter,
"ID_ImageType": NumberFilter,
"ID_Version": NumberFilter,
"_and": [SpeciesImagesFilterInput],
"_or": [SpeciesImagesFilterInput]
}
SpeciesImagesOrderByInput
Fields
Input Field | Description |
---|---|
Bemerkungen - SortOrder
|
Sort by Bemerkungen (see type "SpeciesImage") |
Copyright - SortOrder
|
Sort by Copyright (see type "SpeciesImage") |
FileName - SortOrder
|
Sort by FileName (see type "SpeciesImage") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "SpeciesImage") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "SpeciesImage") |
ID_Art - SortOrder
|
Sort by ID_Art (see type "SpeciesImage") |
ID_ArtenImage - SortOrder
|
Sort by ID_ArtenImage (see type "SpeciesImage") |
ID_Bundesland - SortOrder
|
Sort by ID_Bundesland (see type "SpeciesImage") |
ID_ImageType - SortOrder
|
Sort by ID_ImageType (see type "SpeciesImage") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "SpeciesImage") |
Example
{
"Bemerkungen": "asc",
"Copyright": "asc",
"FileName": "asc",
"Flag_Deleted": "asc",
"Flag_Sync": "asc",
"ID_Art": "asc",
"ID_ArtenImage": "asc",
"ID_Bundesland": "asc",
"ID_ImageType": "asc",
"ID_Version": "asc"
}
SpeciesMemo
Description
Taxa species memos
Fields
Field Name | Description |
---|---|
Bemerkung - String
|
Remarks |
BemerkungTaxonomie - String
|
Taxonomy remarks |
BiologieOekologie - String
|
Biology and ecology |
Erscheinung - String
|
Appearance |
Flag_Deleted - Boolean
|
Flag for deprecated behaviours |
Flag_Sync - Boolean
|
Flag to indicate sync status |
ID_Art - Int!
|
Species ID |
ID_Version - Int
|
Current version number |
Phaenologie - String
|
Phenology |
Synonyme - String
|
Synonyms |
VerbreitungHerkunft - String
|
Distribution and origin |
Example
{
"Bemerkung": "abc123",
"BemerkungTaxonomie": "xyz789",
"BiologieOekologie": "xyz789",
"Erscheinung": "xyz789",
"Flag_Deleted": false,
"Flag_Sync": false,
"ID_Art": 123,
"ID_Version": 123,
"Phaenologie": "xyz789",
"Synonyme": "xyz789",
"VerbreitungHerkunft": "xyz789"
}
SpeciesMemosFilterInput
Fields
Input Field | Description |
---|---|
Bemerkung - StringFilter
|
Filter by Bemerkung (see type "SpeciesMemo") |
BemerkungTaxonomie - StringFilter
|
Filter by BemerkungTaxonomie (see type "SpeciesMemo") |
BiologieOekologie - StringFilter
|
Filter by BiologieOekologie (see type "SpeciesMemo") |
Erscheinung - StringFilter
|
Filter by Erscheinung (see type "SpeciesMemo") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "SpeciesMemo") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "SpeciesMemo") |
ID_Art - NumberFilter
|
Filter by ID_Art (see type "SpeciesMemo") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "SpeciesMemo") |
Phaenologie - StringFilter
|
Filter by Phaenologie (see type "SpeciesMemo") |
Synonyme - StringFilter
|
Filter by Synonyme (see type "SpeciesMemo") |
VerbreitungHerkunft - StringFilter
|
Filter by VerbreitungHerkunft (see type "SpeciesMemo") |
_and - [SpeciesMemosFilterInput!]
|
Logical AND operator |
_or - [SpeciesMemosFilterInput!]
|
Logical OR operator |
Example
{
"Bemerkung": StringFilter,
"BemerkungTaxonomie": StringFilter,
"BiologieOekologie": StringFilter,
"Erscheinung": StringFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Sync": BooleanFilter,
"ID_Art": NumberFilter,
"ID_Version": NumberFilter,
"Phaenologie": StringFilter,
"Synonyme": StringFilter,
"VerbreitungHerkunft": StringFilter,
"_and": [SpeciesMemosFilterInput],
"_or": [SpeciesMemosFilterInput]
}
SpeciesMemosOrderByInput
Fields
Input Field | Description |
---|---|
Bemerkung - SortOrder
|
Sort by Bemerkung (see type "SpeciesMemo") |
BemerkungTaxonomie - SortOrder
|
Sort by BemerkungTaxonomie (see type "SpeciesMemo") |
BiologieOekologie - SortOrder
|
Sort by BiologieOekologie (see type "SpeciesMemo") |
Erscheinung - SortOrder
|
Sort by Erscheinung (see type "SpeciesMemo") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "SpeciesMemo") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "SpeciesMemo") |
ID_Art - SortOrder
|
Sort by ID_Art (see type "SpeciesMemo") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "SpeciesMemo") |
Phaenologie - SortOrder
|
Sort by Phaenologie (see type "SpeciesMemo") |
Synonyme - SortOrder
|
Sort by Synonyme (see type "SpeciesMemo") |
VerbreitungHerkunft - SortOrder
|
Sort by VerbreitungHerkunft (see type "SpeciesMemo") |
Example
{
"Bemerkung": "asc",
"BemerkungTaxonomie": "asc",
"BiologieOekologie": "asc",
"Erscheinung": "asc",
"Flag_Deleted": "asc",
"Flag_Sync": "asc",
"ID_Art": "asc",
"ID_Version": "asc",
"Phaenologie": "asc",
"Synonyme": "asc",
"VerbreitungHerkunft": "asc"
}
SpeciesOrderByInput
Fields
Input Field | Description |
---|---|
Art_BirdBase - SortOrder
|
Sort by Art_BirdBase (see type "Species") |
Art_Deutsch - SortOrder
|
Sort by Art_Deutsch (see type "Species") |
Art_English - SortOrder
|
Sort by Art_English (see type "Species") |
Art_French - SortOrder
|
Sort by Art_French (see type "Species") |
Art_German - SortOrder
|
Sort by Art_German (see type "Species") |
Art_Kuerzel - SortOrder
|
Sort by Art_Kuerzel (see type "Species") |
Art_Kuerzel_BirdBase - SortOrder
|
Sort by Art_Kuerzel_BirdBase (see type "Species") |
Art_Spanish - SortOrder
|
Sort by Art_Spanish (see type "Species") |
Art_Subgenus - SortOrder
|
Sort by Art_Subgenus (see type "Species") |
Art_Wissenschaftlich - SortOrder
|
Sort by Art_Wissenschaftlich (see type "Species") |
Autor - SortOrder
|
Sort by Autor (see type "Species") |
BL20001 - SortOrder
|
Sort by BL20001 (see type "Species") |
BL20002 - SortOrder
|
Sort by BL20002 (see type "Species") |
BL20003 - SortOrder
|
Sort by BL20003 (see type "Species") |
BL20004 - SortOrder
|
Sort by BL20004 (see type "Species") |
BL20005 - SortOrder
|
Sort by BL20005 (see type "Species") |
BL20006 - SortOrder
|
Sort by BL20006 (see type "Species") |
BL20007 - SortOrder
|
Sort by BL20007 (see type "Species") |
BL20008 - SortOrder
|
Sort by BL20008 (see type "Species") |
BL20009 - SortOrder
|
Sort by BL20009 (see type "Species") |
BL20010 - SortOrder
|
Sort by BL20010 (see type "Species") |
BL20011 - SortOrder
|
Sort by BL20011 (see type "Species") |
BL20012 - SortOrder
|
Sort by BL20012 (see type "Species") |
BL20013 - SortOrder
|
Sort by BL20013 (see type "Species") |
BL20014 - SortOrder
|
Sort by BL20014 (see type "Species") |
BL20015 - SortOrder
|
Sort by BL20015 (see type "Species") |
BL20016 - SortOrder
|
Sort by BL20016 (see type "Species") |
BL20017 - SortOrder
|
Sort by BL20017 (see type "Species") |
BNatSchG - SortOrder
|
Sort by BNatSchG (see type "Species") |
BfN_Code - SortOrder
|
Sort by BfN_Code (see type "Species") |
Code_EU - SortOrder
|
Sort by Code_EU (see type "Species") |
EUNomen - SortOrder
|
Sort by EUNomen (see type "Species") |
Euring - SortOrder
|
Sort by Euring (see type "Species") |
FFH - SortOrder
|
Sort by FFH (see type "Species") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "Species") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "Species") |
ID_Art - SortOrder
|
Sort by ID_Art (see type "Species") |
ID_ArtenTyp - SortOrder
|
Sort by ID_ArtenTyp (see type "Species") |
ID_Gruppe - SortOrder
|
Sort by ID_Gruppe (see type "Species") |
ID_Kategorie - SortOrder
|
Sort by ID_Kategorie (see type "Species") |
ID_Parent - SortOrder
|
Sort by ID_Parent (see type "Species") |
ID_Secundum - SortOrder
|
Sort by ID_Secundum (see type "Species") |
ID_TaxaStatus - SortOrder
|
Sort by ID_TaxaStatus (see type "Species") |
ID_Untergruppe - SortOrder
|
Sort by ID_Untergruppe (see type "Species") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "Species") |
RL20001 - SortOrder
|
Sort by RL20001 (see type "Species") |
RL20002 - SortOrder
|
Sort by RL20002 (see type "Species") |
RL20003 - SortOrder
|
Sort by RL20003 (see type "Species") |
RL20004 - SortOrder
|
Sort by RL20004 (see type "Species") |
RL20005 - SortOrder
|
Sort by RL20005 (see type "Species") |
RL20006 - SortOrder
|
Sort by RL20006 (see type "Species") |
RL20007 - SortOrder
|
Sort by RL20007 (see type "Species") |
RL20008 - SortOrder
|
Sort by RL20008 (see type "Species") |
RL20009 - SortOrder
|
Sort by RL20009 (see type "Species") |
RL20010 - SortOrder
|
Sort by RL20010 (see type "Species") |
RL20011 - SortOrder
|
Sort by RL20011 (see type "Species") |
RL20012 - SortOrder
|
Sort by RL20012 (see type "Species") |
RL20013 - SortOrder
|
Sort by RL20013 (see type "Species") |
RL20014 - SortOrder
|
Sort by RL20014 (see type "Species") |
RL20015 - SortOrder
|
Sort by RL20015 (see type "Species") |
RL20016 - SortOrder
|
Sort by RL20016 (see type "Species") |
RL20017 - SortOrder
|
Sort by RL20017 (see type "Species") |
RefID - SortOrder
|
Sort by RefID (see type "Species") |
SysCode - SortOrder
|
Sort by SysCode (see type "Species") |
SystemCode - SortOrder
|
Sort by SystemCode (see type "Species") |
wwSysCode - SortOrder
|
Sort by wwSysCode (see type "Species") |
Example
{
"Art_BirdBase": "asc",
"Art_Deutsch": "asc",
"Art_English": "asc",
"Art_French": "asc",
"Art_German": "asc",
"Art_Kuerzel": "asc",
"Art_Kuerzel_BirdBase": "asc",
"Art_Spanish": "asc",
"Art_Subgenus": "asc",
"Art_Wissenschaftlich": "asc",
"Autor": "asc",
"BL20001": "asc",
"BL20002": "asc",
"BL20003": "asc",
"BL20004": "asc",
"BL20005": "asc",
"BL20006": "asc",
"BL20007": "asc",
"BL20008": "asc",
"BL20009": "asc",
"BL20010": "asc",
"BL20011": "asc",
"BL20012": "asc",
"BL20013": "asc",
"BL20014": "asc",
"BL20015": "asc",
"BL20016": "asc",
"BL20017": "asc",
"BNatSchG": "asc",
"BfN_Code": "asc",
"Code_EU": "asc",
"EUNomen": "asc",
"Euring": "asc",
"FFH": "asc",
"Flag_Deleted": "asc",
"Flag_Sync": "asc",
"ID_Art": "asc",
"ID_ArtenTyp": "asc",
"ID_Gruppe": "asc",
"ID_Kategorie": "asc",
"ID_Parent": "asc",
"ID_Secundum": "asc",
"ID_TaxaStatus": "asc",
"ID_Untergruppe": "asc",
"ID_Version": "asc",
"RL20001": "asc",
"RL20002": "asc",
"RL20003": "asc",
"RL20004": "asc",
"RL20005": "asc",
"RL20006": "asc",
"RL20007": "asc",
"RL20008": "asc",
"RL20009": "asc",
"RL20010": "asc",
"RL20011": "asc",
"RL20012": "asc",
"RL20013": "asc",
"RL20014": "asc",
"RL20015": "asc",
"RL20016": "asc",
"RL20017": "asc",
"RefID": "asc",
"SysCode": "asc",
"SystemCode": "asc",
"wwSysCode": "asc"
}
SpeciesPhenogram
Description
Species phenogram
Fields
Field Name | Description |
---|---|
Bemerkung - String
|
Remarks |
Flag_Deleted - Boolean!
|
Deleted flag |
Flag_Hauptzeit - Boolean!
|
Is main period? |
Flag_Sync - Boolean!
|
Sync flag |
Flag_Unsicher - Boolean!
|
Is uncertain? |
ID_Art - Int!
|
Species ID |
ID_Phaenogramm - Int!
|
Phenogram ID |
ID_Phaenogrammtyp - Int!
|
Phenogram type ID |
ID_Version - Int!
|
Version ID |
Species - Species
|
|
SpeciesPhenogramType - SpeciesPhenogramType
|
|
Zeitraum_Beginn - Int!
|
Start of period |
Zeitraum_Ende - Int!
|
End of period |
Example
{
"Bemerkung": "xyz789",
"Flag_Deleted": false,
"Flag_Hauptzeit": true,
"Flag_Sync": true,
"Flag_Unsicher": true,
"ID_Art": 123,
"ID_Phaenogramm": 987,
"ID_Phaenogrammtyp": 123,
"ID_Version": 987,
"Species": Species,
"SpeciesPhenogramType": SpeciesPhenogramType,
"Zeitraum_Beginn": 123,
"Zeitraum_Ende": 987
}
SpeciesPhenogramType
Description
Species phenogram type
Fields
Field Name | Description |
---|---|
Flag_1 - Boolean
|
|
Flag_2 - Boolean
|
|
Flag_3 - Boolean
|
|
Flag_4 - Boolean
|
|
Flag_5 - Boolean
|
|
Flag_6 - Boolean
|
|
Flag_7 - Boolean
|
|
Flag_Deleted - Boolean
|
|
Flag_Sync - Boolean
|
|
ID_Phaenogrammtyp - Int!
|
Phenogram type ID |
ID_Sort - Int
|
|
ID_Version - Int
|
|
InfoText - String
|
Info text |
Phaenogrammtyp - String
|
Phenogram type name |
SpeciesPhenograms - [SpeciesPhenogram!]
|
Example
{
"Flag_1": false,
"Flag_2": false,
"Flag_3": true,
"Flag_4": false,
"Flag_5": true,
"Flag_6": false,
"Flag_7": true,
"Flag_Deleted": true,
"Flag_Sync": true,
"ID_Phaenogrammtyp": 987,
"ID_Sort": 987,
"ID_Version": 987,
"InfoText": "xyz789",
"Phaenogrammtyp": "abc123",
"SpeciesPhenograms": [SpeciesPhenogram]
}
SpeciesPhenogramTypesFilterInput
Fields
Input Field | Description |
---|---|
Flag_1 - BooleanFilter
|
Filter by Flag_1 (see type "SpeciesPhenogramType") |
Flag_2 - BooleanFilter
|
Filter by Flag_2 (see type "SpeciesPhenogramType") |
Flag_3 - BooleanFilter
|
Filter by Flag_3 (see type "SpeciesPhenogramType") |
Flag_4 - BooleanFilter
|
Filter by Flag_4 (see type "SpeciesPhenogramType") |
Flag_5 - BooleanFilter
|
Filter by Flag_5 (see type "SpeciesPhenogramType") |
Flag_6 - BooleanFilter
|
Filter by Flag_6 (see type "SpeciesPhenogramType") |
Flag_7 - BooleanFilter
|
Filter by Flag_7 (see type "SpeciesPhenogramType") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "SpeciesPhenogramType") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "SpeciesPhenogramType") |
ID_Phaenogrammtyp - NumberFilter
|
Filter by ID_Phaenogrammtyp (see type "SpeciesPhenogramType") |
ID_Sort - NumberFilter
|
Filter by ID_Sort (see type "SpeciesPhenogramType") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "SpeciesPhenogramType") |
InfoText - StringFilter
|
Filter by InfoText (see type "SpeciesPhenogramType") |
Phaenogrammtyp - StringFilter
|
Filter by Phaenogrammtyp (see type "SpeciesPhenogramType") |
_and - [SpeciesPhenogramTypesFilterInput!]
|
Logical AND operator |
_or - [SpeciesPhenogramTypesFilterInput!]
|
Logical OR operator |
Example
{
"Flag_1": BooleanFilter,
"Flag_2": BooleanFilter,
"Flag_3": BooleanFilter,
"Flag_4": BooleanFilter,
"Flag_5": BooleanFilter,
"Flag_6": BooleanFilter,
"Flag_7": BooleanFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Sync": BooleanFilter,
"ID_Phaenogrammtyp": NumberFilter,
"ID_Sort": NumberFilter,
"ID_Version": NumberFilter,
"InfoText": StringFilter,
"Phaenogrammtyp": StringFilter,
"_and": [SpeciesPhenogramTypesFilterInput],
"_or": [SpeciesPhenogramTypesFilterInput]
}
SpeciesPhenogramTypesOrderByInput
Fields
Input Field | Description |
---|---|
Flag_1 - SortOrder
|
Sort by Flag_1 (see type "SpeciesPhenogramType") |
Flag_2 - SortOrder
|
Sort by Flag_2 (see type "SpeciesPhenogramType") |
Flag_3 - SortOrder
|
Sort by Flag_3 (see type "SpeciesPhenogramType") |
Flag_4 - SortOrder
|
Sort by Flag_4 (see type "SpeciesPhenogramType") |
Flag_5 - SortOrder
|
Sort by Flag_5 (see type "SpeciesPhenogramType") |
Flag_6 - SortOrder
|
Sort by Flag_6 (see type "SpeciesPhenogramType") |
Flag_7 - SortOrder
|
Sort by Flag_7 (see type "SpeciesPhenogramType") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "SpeciesPhenogramType") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "SpeciesPhenogramType") |
ID_Phaenogrammtyp - SortOrder
|
Sort by ID_Phaenogrammtyp (see type "SpeciesPhenogramType") |
ID_Sort - SortOrder
|
Sort by ID_Sort (see type "SpeciesPhenogramType") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "SpeciesPhenogramType") |
InfoText - SortOrder
|
Sort by InfoText (see type "SpeciesPhenogramType") |
Phaenogrammtyp - SortOrder
|
Sort by Phaenogrammtyp (see type "SpeciesPhenogramType") |
Example
{
"Flag_1": "asc",
"Flag_2": "asc",
"Flag_3": "asc",
"Flag_4": "asc",
"Flag_5": "asc",
"Flag_6": "asc",
"Flag_7": "asc",
"Flag_Deleted": "asc",
"Flag_Sync": "asc",
"ID_Phaenogrammtyp": "asc",
"ID_Sort": "asc",
"ID_Version": "asc",
"InfoText": "asc",
"Phaenogrammtyp": "asc"
}
SpeciesPhenogramsFilterInput
Fields
Input Field | Description |
---|---|
Bemerkung - StringFilter
|
Filter by Bemerkung (see type "SpeciesPhenogram") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "SpeciesPhenogram") |
Flag_Hauptzeit - BooleanFilter
|
Filter by Flag_Hauptzeit (see type "SpeciesPhenogram") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "SpeciesPhenogram") |
Flag_Unsicher - BooleanFilter
|
Filter by Flag_Unsicher (see type "SpeciesPhenogram") |
ID_Art - NumberFilter
|
Filter by ID_Art (see type "SpeciesPhenogram") |
ID_Phaenogramm - NumberFilter
|
Filter by ID_Phaenogramm (see type "SpeciesPhenogram") |
ID_Phaenogrammtyp - NumberFilter
|
Filter by ID_Phaenogrammtyp (see type "SpeciesPhenogram") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "SpeciesPhenogram") |
Zeitraum_Beginn - NumberFilter
|
Filter by Zeitraum_Beginn (see type "SpeciesPhenogram") |
Zeitraum_Ende - NumberFilter
|
Filter by Zeitraum_Ende (see type "SpeciesPhenogram") |
_and - [SpeciesPhenogramsFilterInput!]
|
Logical AND operator |
_or - [SpeciesPhenogramsFilterInput!]
|
Logical OR operator |
Example
{
"Bemerkung": StringFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Hauptzeit": BooleanFilter,
"Flag_Sync": BooleanFilter,
"Flag_Unsicher": BooleanFilter,
"ID_Art": NumberFilter,
"ID_Phaenogramm": NumberFilter,
"ID_Phaenogrammtyp": NumberFilter,
"ID_Version": NumberFilter,
"Zeitraum_Beginn": NumberFilter,
"Zeitraum_Ende": NumberFilter,
"_and": [SpeciesPhenogramsFilterInput],
"_or": [SpeciesPhenogramsFilterInput]
}
SpeciesPhenogramsOrderByInput
Fields
Input Field | Description |
---|---|
Bemerkung - SortOrder
|
Sort by Bemerkung (see type "SpeciesPhenogram") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "SpeciesPhenogram") |
Flag_Hauptzeit - SortOrder
|
Sort by Flag_Hauptzeit (see type "SpeciesPhenogram") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "SpeciesPhenogram") |
Flag_Unsicher - SortOrder
|
Sort by Flag_Unsicher (see type "SpeciesPhenogram") |
ID_Art - SortOrder
|
Sort by ID_Art (see type "SpeciesPhenogram") |
ID_Phaenogramm - SortOrder
|
Sort by ID_Phaenogramm (see type "SpeciesPhenogram") |
ID_Phaenogrammtyp - SortOrder
|
Sort by ID_Phaenogrammtyp (see type "SpeciesPhenogram") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "SpeciesPhenogram") |
Zeitraum_Beginn - SortOrder
|
Sort by Zeitraum_Beginn (see type "SpeciesPhenogram") |
Zeitraum_Ende - SortOrder
|
Sort by Zeitraum_Ende (see type "SpeciesPhenogram") |
Example
{
"Bemerkung": "asc",
"Flag_Deleted": "asc",
"Flag_Hauptzeit": "asc",
"Flag_Sync": "asc",
"Flag_Unsicher": "asc",
"ID_Art": "asc",
"ID_Phaenogramm": "asc",
"ID_Phaenogrammtyp": "asc",
"ID_Version": "asc",
"Zeitraum_Beginn": "asc",
"Zeitraum_Ende": "asc"
}
String
Description
The String
scalar type represents textual data, represented as UTF-8 character sequences. The String type is most often used by GraphQL to represent free-form human-readable text.
Example
"xyz789"
StringFilter
Example
{
"_eq": "xyz789",
"_ilike": "abc123",
"_in": ["abc123"],
"_like": "abc123",
"_neq": "abc123",
"_nilike": "xyz789",
"_nin": ["xyz789"],
"_nlike": "abc123"
}
Subgroup
Description
Taxa subgroups
Fields
Field Name | Description |
---|---|
Flag_Deleted - Boolean
|
Flag for deprecated subgroups |
Flag_Sync - Boolean
|
Flag to indicate sync status |
Group - Group
|
|
ID_Gruppe - Int
|
ID of parent group |
ID_Untergruppe - Int!
|
Subgroup ID |
ID_Version - Int
|
Current version number |
Species - [Species!]
|
|
Untergruppe - String
|
German name of the subgroup |
Untergruppe_wiss - String
|
Scientific name of the subgroup (lat.) |
Example
{
"Flag_Deleted": true,
"Flag_Sync": true,
"Group": Group,
"ID_Gruppe": 123,
"ID_Untergruppe": 123,
"ID_Version": 987,
"Species": [Species],
"Untergruppe": "xyz789",
"Untergruppe_wiss": "xyz789"
}
TaxonomicRank
Description
Taxonomic ranks
Fields
Field Name | Description |
---|---|
Artentyp - String
|
English taxonomic rank name |
Beschreibung - String
|
German taxonomic rank name |
Flag_Deleted - Boolean
|
Flag for deprecated taxonomic ranks |
Flag_Sync - Boolean
|
Flag to indicate sync status |
ID_ArtenTyp - Int!
|
Taxonomic rank ID |
ID_Sort - Int
|
Taxonomic rank sort order |
ID_Version - Int
|
Current version number |
Species - [Species!]
|
Example
{
"Artentyp": "xyz789",
"Beschreibung": "xyz789",
"Flag_Deleted": true,
"Flag_Sync": true,
"ID_ArtenTyp": 123,
"ID_Sort": 123,
"ID_Version": 987,
"Species": [Species]
}
TaxonomicRanksFilterInput
Fields
Input Field | Description |
---|---|
Artentyp - StringFilter
|
Filter by Artentyp (see type "TaxonomicRank") |
Beschreibung - StringFilter
|
Filter by Beschreibung (see type "TaxonomicRank") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "TaxonomicRank") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "TaxonomicRank") |
ID_ArtenTyp - NumberFilter
|
Filter by ID_ArtenTyp (see type "TaxonomicRank") |
ID_Sort - NumberFilter
|
Filter by ID_Sort (see type "TaxonomicRank") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "TaxonomicRank") |
_and - [TaxonomicRanksFilterInput!]
|
Logical AND operator |
_or - [TaxonomicRanksFilterInput!]
|
Logical OR operator |
Example
{
"Artentyp": StringFilter,
"Beschreibung": StringFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Sync": BooleanFilter,
"ID_ArtenTyp": NumberFilter,
"ID_Sort": NumberFilter,
"ID_Version": NumberFilter,
"_and": [TaxonomicRanksFilterInput],
"_or": [TaxonomicRanksFilterInput]
}
TaxonomicRanksOrderByInput
Fields
Input Field | Description |
---|---|
Artentyp - SortOrder
|
Sort by Artentyp (see type "TaxonomicRank") |
Beschreibung - SortOrder
|
Sort by Beschreibung (see type "TaxonomicRank") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "TaxonomicRank") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "TaxonomicRank") |
ID_ArtenTyp - SortOrder
|
Sort by ID_ArtenTyp (see type "TaxonomicRank") |
ID_Sort - SortOrder
|
Sort by ID_Sort (see type "TaxonomicRank") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "TaxonomicRank") |
Example
{
"Artentyp": "asc",
"Beschreibung": "asc",
"Flag_Deleted": "asc",
"Flag_Sync": "asc",
"ID_ArtenTyp": "asc",
"ID_Sort": "asc",
"ID_Version": "asc"
}
Unit
Description
Taxa species units
Fields
Field Name | Description |
---|---|
Beschreibung - String
|
Unit description |
Categories - [Category!]!
|
|
Arguments
|
|
Einheit - String
|
Unit name |
Flag_1 - Boolean
|
Whether the unit can be selected for taxa of category 1 (Amphibians/Reptiles). |
Flag_2 - Boolean
|
Whether the unit can be selected for taxa of category 2 (Fish). |
Flag_3 - Boolean
|
Whether the unit can be selected for taxa of category 3 (Mammals). |
Flag_4 - Boolean
|
Whether the unit can be selected for taxa of category 4 (Birds). |
Flag_5 - Boolean
|
Whether the unit can be selected for taxa of category 5 (Invertebrates). |
Flag_6 - Boolean
|
Whether the unit can be selected for taxa of category 6 (Plants). |
Flag_7 - Boolean
|
Whether the unit can be selected for taxa of category 7 (Funghi). |
Flag_Deleted - Boolean
|
Flag for deprecated units |
Flag_Sync - Boolean
|
Flag to indicate sync status |
Flag_Visible - Boolean
|
Whether the unit is visible. |
GUID_Einheit - String!
|
Unit GUID |
ID_Einheit - Int!
|
Unit ID |
ID_Sort - Int
|
Unit sort order |
ID_Version - Int
|
Current version number |
Kuerzel - String
|
Unit abbreviation |
Modul_1 - Boolean
|
|
Modul_2 - Boolean
|
|
Modul_3 - Boolean
|
|
Modul_4 - Boolean
|
|
Modul_5 - Boolean
|
|
Modul_6 - Boolean
|
|
Modul_7 - Boolean
|
|
Modul_8 - Boolean
|
|
Modul_9 - Boolean
|
|
Modul_10 - Boolean
|
|
Modul_11 - Boolean
|
|
Modul_12 - Boolean
|
|
Modul_13 - Boolean
|
|
Modul_14 - Boolean
|
|
Modul_15 - Boolean
|
|
RefID - Int
|
Example
{
"Beschreibung": "xyz789",
"Categories": [Category],
"Einheit": "xyz789",
"Flag_1": true,
"Flag_2": false,
"Flag_3": true,
"Flag_4": true,
"Flag_5": true,
"Flag_6": true,
"Flag_7": true,
"Flag_Deleted": false,
"Flag_Sync": false,
"Flag_Visible": false,
"GUID_Einheit": "xyz789",
"ID_Einheit": 987,
"ID_Sort": 987,
"ID_Version": 987,
"Kuerzel": "abc123",
"Modul_1": true,
"Modul_2": false,
"Modul_3": true,
"Modul_4": false,
"Modul_5": true,
"Modul_6": false,
"Modul_7": true,
"Modul_8": false,
"Modul_9": false,
"Modul_10": false,
"Modul_11": true,
"Modul_12": false,
"Modul_13": true,
"Modul_14": true,
"Modul_15": false,
"RefID": 123
}
UnitsFilterInput
Fields
Input Field | Description |
---|---|
Beschreibung - StringFilter
|
Filter by Beschreibung (see type "Unit") |
Einheit - StringFilter
|
Filter by Einheit (see type "Unit") |
Flag_1 - BooleanFilter
|
Filter by Flag_1 (see type "Unit") |
Flag_2 - BooleanFilter
|
Filter by Flag_2 (see type "Unit") |
Flag_3 - BooleanFilter
|
Filter by Flag_3 (see type "Unit") |
Flag_4 - BooleanFilter
|
Filter by Flag_4 (see type "Unit") |
Flag_5 - BooleanFilter
|
Filter by Flag_5 (see type "Unit") |
Flag_6 - BooleanFilter
|
Filter by Flag_6 (see type "Unit") |
Flag_7 - BooleanFilter
|
Filter by Flag_7 (see type "Unit") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "Unit") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "Unit") |
Flag_Visible - BooleanFilter
|
Filter by Flag_Visible (see type "Unit") |
GUID_Einheit - StringFilter
|
Filter by GUID_Einheit (see type "Unit") |
ID_Einheit - NumberFilter
|
Filter by ID_Einheit (see type "Unit") |
ID_Sort - NumberFilter
|
Filter by ID_Sort (see type "Unit") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "Unit") |
Kuerzel - StringFilter
|
Filter by Kuerzel (see type "Unit") |
Modul_1 - BooleanFilter
|
Filter by Modul_1 (see type "Unit") |
Modul_2 - BooleanFilter
|
Filter by Modul_2 (see type "Unit") |
Modul_3 - BooleanFilter
|
Filter by Modul_3 (see type "Unit") |
Modul_4 - BooleanFilter
|
Filter by Modul_4 (see type "Unit") |
Modul_5 - BooleanFilter
|
Filter by Modul_5 (see type "Unit") |
Modul_6 - BooleanFilter
|
Filter by Modul_6 (see type "Unit") |
Modul_7 - BooleanFilter
|
Filter by Modul_7 (see type "Unit") |
Modul_8 - BooleanFilter
|
Filter by Modul_8 (see type "Unit") |
Modul_9 - BooleanFilter
|
Filter by Modul_9 (see type "Unit") |
Modul_10 - BooleanFilter
|
Filter by Modul_10 (see type "Unit") |
Modul_11 - BooleanFilter
|
Filter by Modul_11 (see type "Unit") |
Modul_12 - BooleanFilter
|
Filter by Modul_12 (see type "Unit") |
Modul_13 - BooleanFilter
|
Filter by Modul_13 (see type "Unit") |
Modul_14 - BooleanFilter
|
Filter by Modul_14 (see type "Unit") |
Modul_15 - BooleanFilter
|
Filter by Modul_15 (see type "Unit") |
RefID - NumberFilter
|
Filter by RefID (see type "Unit") |
_and - [UnitsFilterInput!]
|
Logical AND operator |
_or - [UnitsFilterInput!]
|
Logical OR operator |
Example
{
"Beschreibung": StringFilter,
"Einheit": StringFilter,
"Flag_1": BooleanFilter,
"Flag_2": BooleanFilter,
"Flag_3": BooleanFilter,
"Flag_4": BooleanFilter,
"Flag_5": BooleanFilter,
"Flag_6": BooleanFilter,
"Flag_7": BooleanFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Sync": BooleanFilter,
"Flag_Visible": BooleanFilter,
"GUID_Einheit": StringFilter,
"ID_Einheit": NumberFilter,
"ID_Sort": NumberFilter,
"ID_Version": NumberFilter,
"Kuerzel": StringFilter,
"Modul_1": BooleanFilter,
"Modul_2": BooleanFilter,
"Modul_3": BooleanFilter,
"Modul_4": BooleanFilter,
"Modul_5": BooleanFilter,
"Modul_6": BooleanFilter,
"Modul_7": BooleanFilter,
"Modul_8": BooleanFilter,
"Modul_9": BooleanFilter,
"Modul_10": BooleanFilter,
"Modul_11": BooleanFilter,
"Modul_12": BooleanFilter,
"Modul_13": BooleanFilter,
"Modul_14": BooleanFilter,
"Modul_15": BooleanFilter,
"RefID": NumberFilter,
"_and": [UnitsFilterInput],
"_or": [UnitsFilterInput]
}
UnitsOrderByInput
Fields
Input Field | Description |
---|---|
Beschreibung - SortOrder
|
Sort by Beschreibung (see type "Unit") |
Einheit - SortOrder
|
Sort by Einheit (see type "Unit") |
Flag_1 - SortOrder
|
Sort by Flag_1 (see type "Unit") |
Flag_2 - SortOrder
|
Sort by Flag_2 (see type "Unit") |
Flag_3 - SortOrder
|
Sort by Flag_3 (see type "Unit") |
Flag_4 - SortOrder
|
Sort by Flag_4 (see type "Unit") |
Flag_5 - SortOrder
|
Sort by Flag_5 (see type "Unit") |
Flag_6 - SortOrder
|
Sort by Flag_6 (see type "Unit") |
Flag_7 - SortOrder
|
Sort by Flag_7 (see type "Unit") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "Unit") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "Unit") |
Flag_Visible - SortOrder
|
Sort by Flag_Visible (see type "Unit") |
GUID_Einheit - SortOrder
|
Sort by GUID_Einheit (see type "Unit") |
ID_Einheit - SortOrder
|
Sort by ID_Einheit (see type "Unit") |
ID_Sort - SortOrder
|
Sort by ID_Sort (see type "Unit") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "Unit") |
Kuerzel - SortOrder
|
Sort by Kuerzel (see type "Unit") |
Modul_1 - SortOrder
|
Sort by Modul_1 (see type "Unit") |
Modul_2 - SortOrder
|
Sort by Modul_2 (see type "Unit") |
Modul_3 - SortOrder
|
Sort by Modul_3 (see type "Unit") |
Modul_4 - SortOrder
|
Sort by Modul_4 (see type "Unit") |
Modul_5 - SortOrder
|
Sort by Modul_5 (see type "Unit") |
Modul_6 - SortOrder
|
Sort by Modul_6 (see type "Unit") |
Modul_7 - SortOrder
|
Sort by Modul_7 (see type "Unit") |
Modul_8 - SortOrder
|
Sort by Modul_8 (see type "Unit") |
Modul_9 - SortOrder
|
Sort by Modul_9 (see type "Unit") |
Modul_10 - SortOrder
|
Sort by Modul_10 (see type "Unit") |
Modul_11 - SortOrder
|
Sort by Modul_11 (see type "Unit") |
Modul_12 - SortOrder
|
Sort by Modul_12 (see type "Unit") |
Modul_13 - SortOrder
|
Sort by Modul_13 (see type "Unit") |
Modul_14 - SortOrder
|
Sort by Modul_14 (see type "Unit") |
Modul_15 - SortOrder
|
Sort by Modul_15 (see type "Unit") |
RefID - SortOrder
|
Sort by RefID (see type "Unit") |
Example
{
"Beschreibung": "asc",
"Einheit": "asc",
"Flag_1": "asc",
"Flag_2": "asc",
"Flag_3": "asc",
"Flag_4": "asc",
"Flag_5": "asc",
"Flag_6": "asc",
"Flag_7": "asc",
"Flag_Deleted": "asc",
"Flag_Sync": "asc",
"Flag_Visible": "asc",
"GUID_Einheit": "asc",
"ID_Einheit": "asc",
"ID_Sort": "asc",
"ID_Version": "asc",
"Kuerzel": "asc",
"Modul_1": "asc",
"Modul_2": "asc",
"Modul_3": "asc",
"Modul_4": "asc",
"Modul_5": "asc",
"Modul_6": "asc",
"Modul_7": "asc",
"Modul_8": "asc",
"Modul_9": "asc",
"Modul_10": "asc",
"Modul_11": "asc",
"Modul_12": "asc",
"Modul_13": "asc",
"Modul_14": "asc",
"Modul_15": "asc",
"RefID": "asc"
}
UpdateObservationInput
Fields
Input Field | Description |
---|---|
Allochthonie - Boolean
|
Is the species allochthonous (not native to the site)? |
Anzahl - String
|
Number of individuals |
AnzahlAdult - Int
|
Number of adult individuals |
AnzahlBluehend - Int
|
Number of flowering individuals (for plants) |
AnzahlGeschAdult - Int
|
|
AnzahlGeschGesamt - Int
|
|
AnzahlGeschJuvenil - Int
|
|
AnzahlJuvenil - Int
|
Number of juvenile individuals |
AnzahlMaennl - Int
|
Number of masculine individuals |
AnzahlNichtBluehend - Int
|
Number of non-flowering individuals (for plants) |
AnzahlTFAdult - Int
|
|
AnzahlTFJuvenil - Int
|
|
AnzahlWFMaennl - Int
|
|
AnzahlWFWeibl - Int
|
|
AnzahlWeibl - Int
|
Number of feminine individuals |
Anzahl_1 - Int
|
|
Anzahl_2 - Int
|
|
Anzahl_3 - Int
|
|
Anzahl_4 - Int
|
|
Anzahl_5 - Int
|
|
Anzahl_6 - Int
|
|
Anzahl_7 - Int
|
|
Anzahl_8 - Int
|
|
Anzahl_9 - Int
|
|
Anzahl_10 - Int
|
|
Anzahl_11 - Int
|
|
Anzahl_12 - Int
|
|
Anzahl_Max - Int
|
|
Anzahl_Min - Int
|
|
Bemerkung - String
|
Observation comment |
Biotop - String
|
|
Datum - DateTime
|
Observation date |
Datum_GeprueftAm - DateTime
|
|
Details - String
|
Observation details |
Erfassungsname - String
|
|
Flag - Boolean
|
|
Flag_Aggregiert - Boolean
|
|
Flag_Basisort - Boolean
|
|
Flag_Beringung - Boolean
|
|
Flag_Deleted - Boolean
|
|
Flag_Export - Boolean
|
|
Flag_Filter - Boolean
|
|
Flag_Intern - Boolean
|
|
Flag_Trash - Boolean
|
|
GUID_Atlas - String
|
|
GUID_Beobachter - String
|
|
GUID_Bestimmer - String
|
|
GUID_Daten - String!
|
Observation GUID |
GUID_Datenbankherkunft - String
|
Only for internal use! Do not set if you are not sure! |
GUID_GeprueftVon - String
|
|
GUID_Group - String
|
|
GUID_Herkunft - String
|
|
GUID_Import - String
|
|
GUID_Kasten - String
|
|
GUID_Ort - String
|
|
GUID_Sammlung - String
|
|
Geprueft_Info - String
|
|
Hoehe - Int
|
|
ID_AddIn - Int
|
|
ID_Alter - Int
|
|
ID_Art - Int
|
Species ID |
ID_Art_Negativnachweis - Int
|
|
ID_Art_NichtKartiert - Int
|
|
ID_Besatz - Int
|
|
ID_Deckungsgrad - Int
|
|
ID_Einheit - Int
|
Unit ID |
ID_FundTyp - Int
|
|
ID_GenauigkeitAnzahl - Int
|
|
ID_GenauigkeitDatum - Int
|
|
ID_Habitat - Int
|
|
ID_Herausgabegenauigkeit - Int
|
|
ID_Material - Int
|
|
ID_Nachweissicherheit - Int
|
|
ID_Nachweistyp - Int
|
Identification method ID |
ID_Qualitaet - Int
|
|
ID_Quartiertyp - Int
|
|
ID_Reproduktion - Int
|
Reproduction ID |
ID_Revierstatus - Int
|
|
ID_Schicht - Int
|
|
ID_Stadium - Int
|
|
ID_Substrat - Int
|
|
ID_Substratzustand - Int
|
|
ID_Toleranz - Int
|
Tolerance ID |
ID_Traegerbaum - Int
|
|
ID_Verhalten - Int
|
Behaviour ID |
ID_Verwendung - Int
|
|
ID_Wuchsstelle - Int
|
|
Jahr - Int
|
Year of the observation date |
LAEACellCode - Int
|
|
LAEARaster - String
|
|
Len5Finger - Float
|
|
LenDaumen - Float
|
|
LenUnterarm - Float
|
|
MTB - Int
|
Map quadrant ID (TK25) |
MTBQ - Int
|
Map sub-quadrant ID (TK25) |
Masse - Float
|
|
Masse_kg_gesamt - Float
|
|
Merkmal - String
|
|
Monat - Int
|
Month of the observation date |
Ortsbezeichnung - String
|
General site name |
Quelle - String
|
|
Raster - String
|
|
RefID - Int
|
|
ReferenzNr - String
|
|
Region - String
|
|
Ringnummer - String
|
|
RingnummerText - String
|
|
Ringserie - String
|
|
Vector_Grad - Int
|
|
Vector_Meter - Int
|
|
Zentrale - String
|
|
additionalData - InsertObservationAdditionalDataInput
|
|
detailData - [InsertObservationDetailInput!]
|
|
monitoringData - [InsertMonitoringDataInput!]
|
|
sDBHerkunft - String
|
|
xWGS84 - Float
|
|
yWGS84 - Float
|
Example
{
"Allochthonie": false,
"Anzahl": "xyz789",
"AnzahlAdult": 123,
"AnzahlBluehend": 987,
"AnzahlGeschAdult": 123,
"AnzahlGeschGesamt": 123,
"AnzahlGeschJuvenil": 123,
"AnzahlJuvenil": 987,
"AnzahlMaennl": 987,
"AnzahlNichtBluehend": 987,
"AnzahlTFAdult": 987,
"AnzahlTFJuvenil": 987,
"AnzahlWFMaennl": 987,
"AnzahlWFWeibl": 123,
"AnzahlWeibl": 123,
"Anzahl_1": 987,
"Anzahl_2": 987,
"Anzahl_3": 123,
"Anzahl_4": 987,
"Anzahl_5": 987,
"Anzahl_6": 123,
"Anzahl_7": 123,
"Anzahl_8": 987,
"Anzahl_9": 987,
"Anzahl_10": 123,
"Anzahl_11": 987,
"Anzahl_12": 123,
"Anzahl_Max": 123,
"Anzahl_Min": 987,
"Bemerkung": "xyz789",
"Biotop": "abc123",
"Datum": "2007-12-03T10:15:30Z",
"Datum_GeprueftAm": "2007-12-03T10:15:30Z",
"Details": "abc123",
"Erfassungsname": "abc123",
"Flag": true,
"Flag_Aggregiert": true,
"Flag_Basisort": true,
"Flag_Beringung": false,
"Flag_Deleted": true,
"Flag_Export": false,
"Flag_Filter": true,
"Flag_Intern": true,
"Flag_Trash": true,
"GUID_Atlas": "xyz789",
"GUID_Beobachter": "xyz789",
"GUID_Bestimmer": "xyz789",
"GUID_Daten": "abc123",
"GUID_Datenbankherkunft": "xyz789",
"GUID_GeprueftVon": "xyz789",
"GUID_Group": "xyz789",
"GUID_Herkunft": "abc123",
"GUID_Import": "xyz789",
"GUID_Kasten": "abc123",
"GUID_Ort": "abc123",
"GUID_Sammlung": "xyz789",
"Geprueft_Info": "xyz789",
"Hoehe": 123,
"ID_AddIn": 123,
"ID_Alter": 123,
"ID_Art": 987,
"ID_Art_Negativnachweis": 123,
"ID_Art_NichtKartiert": 123,
"ID_Besatz": 123,
"ID_Deckungsgrad": 123,
"ID_Einheit": 123,
"ID_FundTyp": 987,
"ID_GenauigkeitAnzahl": 123,
"ID_GenauigkeitDatum": 987,
"ID_Habitat": 123,
"ID_Herausgabegenauigkeit": 123,
"ID_Material": 123,
"ID_Nachweissicherheit": 987,
"ID_Nachweistyp": 987,
"ID_Qualitaet": 987,
"ID_Quartiertyp": 123,
"ID_Reproduktion": 987,
"ID_Revierstatus": 987,
"ID_Schicht": 987,
"ID_Stadium": 123,
"ID_Substrat": 987,
"ID_Substratzustand": 987,
"ID_Toleranz": 123,
"ID_Traegerbaum": 123,
"ID_Verhalten": 123,
"ID_Verwendung": 987,
"ID_Wuchsstelle": 987,
"Jahr": 987,
"LAEACellCode": 123,
"LAEARaster": "xyz789",
"Len5Finger": 987.65,
"LenDaumen": 123.45,
"LenUnterarm": 987.65,
"MTB": 123,
"MTBQ": 123,
"Masse": 987.65,
"Masse_kg_gesamt": 987.65,
"Merkmal": "abc123",
"Monat": 123,
"Ortsbezeichnung": "xyz789",
"Quelle": "abc123",
"Raster": "abc123",
"RefID": 987,
"ReferenzNr": "abc123",
"Region": "abc123",
"Ringnummer": "xyz789",
"RingnummerText": "xyz789",
"Ringserie": "abc123",
"Vector_Grad": 123,
"Vector_Meter": 123,
"Zentrale": "abc123",
"additionalData": InsertObservationAdditionalDataInput,
"detailData": [InsertObservationDetailInput],
"monitoringData": [InsertMonitoringDataInput],
"sDBHerkunft": "abc123",
"xWGS84": 123.45,
"yWGS84": 123.45
}
Upload
Description
The Upload
scalar type represents a file upload.
Example
Upload
UserField
Description
User fields for observation details
Fields
Field Name | Description |
---|---|
CountDecimal - Int
|
Number of decimal places |
Description - String
|
User field description |
Flag_1 - Boolean
|
Whether the user field is for taxa of category 1 (Amphibians/Reptiles). |
Flag_2 - Boolean
|
Whether the user field is for taxa of category 2 (Fish). |
Flag_3 - Boolean
|
Whether the user field is for taxa of category 3 (Mammals). |
Flag_4 - Boolean
|
Whether the user field is for taxa of category 4 (Birds). |
Flag_5 - Boolean
|
Whether the user field is for taxa of category 5 (Invertebrates). |
Flag_6 - Boolean
|
Whether the user field is for taxa of category 6 (Plants). |
Flag_7 - Boolean
|
Whether the user field is for taxa of category 7 (Funghi). |
Flag_AufnahmeDetails - Boolean
|
|
Flag_Deleted - Boolean
|
Flag for deprecated user fields |
Flag_Details - Boolean
|
|
Flag_FilterField - Boolean
|
|
Flag_Sync - Boolean
|
Flag to indicate sync status |
ID_DT - Int!
|
Data type ID |
ID_Datentyp - Int
|
Data type ID |
ID_UF - Int!
|
User field ID |
ID_Version - Int
|
Current version number |
Kategorie - String
|
User field category |
Modul_1 - Boolean
|
Whether the user field is for module 1 (beavers). |
Modul_2 - Boolean
|
Whether the user field is for module 2 (bats). |
Modul_3 - Boolean
|
Whether the user field is for module 3 (dormice). |
Modul_4 - Boolean
|
Whether the user field is for module 4 (fish). |
Modul_5 - Boolean
|
Whether the user field is for module 5 (castings). |
Modul_6 - Boolean
|
Whether the user field is for module 6 (Large birds/breeding site). |
Modul_7 - Boolean
|
Whether the user field is for module 7 (Large birds/resting place). |
Modul_8 - Boolean
|
Whether the user field is for module 8 (Wolf monitoring/howling). |
Modul_9 - Boolean
|
Whether the user field is for module 9 (Wolf monitoring/carcass of wild animals). |
Modul_10 - Boolean
|
Whether the user field is for module 10 (Wolf monitoring/dropping). |
Modul_11 - Boolean
|
Whether the user field is for module 11 (Wolf monitoring/observation). |
Modul_12 - Boolean
|
Whether the user field is for module 12 (Wolf monitoring/track). |
Modul_13 - Boolean
|
Whether the user field is for module 13 (BatBase). |
Modul_14 - Boolean
|
Whether the user field is for module 14 (BirdBase). |
Modul_15 - Boolean
|
Whether the user field is for module 15 (Monitoring otter). This module is discontinued. |
ObservationDetails - [ObservationDetail!]
|
|
UserField - String
|
User field name |
UserField_English - String
|
English user field name |
UserField_French - String
|
French user field name |
UserField_German - String
|
German user field name |
UserField_Spanish - String
|
Spanish user field name |
Example
{
"CountDecimal": 987,
"Description": "xyz789",
"Flag_1": true,
"Flag_2": true,
"Flag_3": false,
"Flag_4": false,
"Flag_5": false,
"Flag_6": false,
"Flag_7": true,
"Flag_AufnahmeDetails": false,
"Flag_Deleted": false,
"Flag_Details": false,
"Flag_FilterField": false,
"Flag_Sync": true,
"ID_DT": 123,
"ID_Datentyp": 123,
"ID_UF": 123,
"ID_Version": 987,
"Kategorie": "xyz789",
"Modul_1": true,
"Modul_2": false,
"Modul_3": true,
"Modul_4": true,
"Modul_5": false,
"Modul_6": false,
"Modul_7": false,
"Modul_8": false,
"Modul_9": true,
"Modul_10": true,
"Modul_11": false,
"Modul_12": false,
"Modul_13": true,
"Modul_14": false,
"Modul_15": true,
"ObservationDetails": [ObservationDetail],
"UserField": "abc123",
"UserField_English": "xyz789",
"UserField_French": "abc123",
"UserField_German": "xyz789",
"UserField_Spanish": "abc123"
}
UserFieldsFilterInput
Fields
Input Field | Description |
---|---|
CountDecimal - NumberFilter
|
Filter by CountDecimal (see type "UserField") |
Description - StringFilter
|
Filter by Description (see type "UserField") |
Flag_1 - BooleanFilter
|
Filter by Flag_1 (see type "UserField") |
Flag_2 - BooleanFilter
|
Filter by Flag_2 (see type "UserField") |
Flag_3 - BooleanFilter
|
Filter by Flag_3 (see type "UserField") |
Flag_4 - BooleanFilter
|
Filter by Flag_4 (see type "UserField") |
Flag_5 - BooleanFilter
|
Filter by Flag_5 (see type "UserField") |
Flag_6 - BooleanFilter
|
Filter by Flag_6 (see type "UserField") |
Flag_7 - BooleanFilter
|
Filter by Flag_7 (see type "UserField") |
Flag_AufnahmeDetails - BooleanFilter
|
Filter by Flag_AufnahmeDetails (see type "UserField") |
Flag_Deleted - BooleanFilter
|
Filter by Flag_Deleted (see type "UserField") |
Flag_Details - BooleanFilter
|
Filter by Flag_Details (see type "UserField") |
Flag_FilterField - BooleanFilter
|
Filter by Flag_FilterField (see type "UserField") |
Flag_Sync - BooleanFilter
|
Filter by Flag_Sync (see type "UserField") |
ID_DT - NumberFilter
|
Filter by ID_DT (see type "UserField") |
ID_Datentyp - NumberFilter
|
Filter by ID_Datentyp (see type "UserField") |
ID_UF - NumberFilter
|
Filter by ID_UF (see type "UserField") |
ID_Version - NumberFilter
|
Filter by ID_Version (see type "UserField") |
Kategorie - StringFilter
|
Filter by Kategorie (see type "UserField") |
Modul_1 - BooleanFilter
|
Filter by Modul_1 (see type "UserField") |
Modul_2 - BooleanFilter
|
Filter by Modul_2 (see type "UserField") |
Modul_3 - BooleanFilter
|
Filter by Modul_3 (see type "UserField") |
Modul_4 - BooleanFilter
|
Filter by Modul_4 (see type "UserField") |
Modul_5 - BooleanFilter
|
Filter by Modul_5 (see type "UserField") |
Modul_6 - BooleanFilter
|
Filter by Modul_6 (see type "UserField") |
Modul_7 - BooleanFilter
|
Filter by Modul_7 (see type "UserField") |
Modul_8 - BooleanFilter
|
Filter by Modul_8 (see type "UserField") |
Modul_9 - BooleanFilter
|
Filter by Modul_9 (see type "UserField") |
Modul_10 - BooleanFilter
|
Filter by Modul_10 (see type "UserField") |
Modul_11 - BooleanFilter
|
Filter by Modul_11 (see type "UserField") |
Modul_12 - BooleanFilter
|
Filter by Modul_12 (see type "UserField") |
Modul_13 - BooleanFilter
|
Filter by Modul_13 (see type "UserField") |
Modul_14 - BooleanFilter
|
Filter by Modul_14 (see type "UserField") |
Modul_15 - BooleanFilter
|
Filter by Modul_15 (see type "UserField") |
UserField - StringFilter
|
Filter by UserField (see type "UserField") |
UserField_English - StringFilter
|
Filter by UserField_English (see type "UserField") |
UserField_French - StringFilter
|
Filter by UserField_French (see type "UserField") |
UserField_German - StringFilter
|
Filter by UserField_German (see type "UserField") |
UserField_Spanish - StringFilter
|
Filter by UserField_Spanish (see type "UserField") |
_and - [UserFieldsFilterInput!]
|
Logical AND operator |
_or - [UserFieldsFilterInput!]
|
Logical OR operator |
Example
{
"CountDecimal": NumberFilter,
"Description": StringFilter,
"Flag_1": BooleanFilter,
"Flag_2": BooleanFilter,
"Flag_3": BooleanFilter,
"Flag_4": BooleanFilter,
"Flag_5": BooleanFilter,
"Flag_6": BooleanFilter,
"Flag_7": BooleanFilter,
"Flag_AufnahmeDetails": BooleanFilter,
"Flag_Deleted": BooleanFilter,
"Flag_Details": BooleanFilter,
"Flag_FilterField": BooleanFilter,
"Flag_Sync": BooleanFilter,
"ID_DT": NumberFilter,
"ID_Datentyp": NumberFilter,
"ID_UF": NumberFilter,
"ID_Version": NumberFilter,
"Kategorie": StringFilter,
"Modul_1": BooleanFilter,
"Modul_2": BooleanFilter,
"Modul_3": BooleanFilter,
"Modul_4": BooleanFilter,
"Modul_5": BooleanFilter,
"Modul_6": BooleanFilter,
"Modul_7": BooleanFilter,
"Modul_8": BooleanFilter,
"Modul_9": BooleanFilter,
"Modul_10": BooleanFilter,
"Modul_11": BooleanFilter,
"Modul_12": BooleanFilter,
"Modul_13": BooleanFilter,
"Modul_14": BooleanFilter,
"Modul_15": BooleanFilter,
"UserField": StringFilter,
"UserField_English": StringFilter,
"UserField_French": StringFilter,
"UserField_German": StringFilter,
"UserField_Spanish": StringFilter,
"_and": [UserFieldsFilterInput],
"_or": [UserFieldsFilterInput]
}
UserFieldsOrderByInput
Fields
Input Field | Description |
---|---|
CountDecimal - SortOrder
|
Sort by CountDecimal (see type "UserField") |
Description - SortOrder
|
Sort by Description (see type "UserField") |
Flag_1 - SortOrder
|
Sort by Flag_1 (see type "UserField") |
Flag_2 - SortOrder
|
Sort by Flag_2 (see type "UserField") |
Flag_3 - SortOrder
|
Sort by Flag_3 (see type "UserField") |
Flag_4 - SortOrder
|
Sort by Flag_4 (see type "UserField") |
Flag_5 - SortOrder
|
Sort by Flag_5 (see type "UserField") |
Flag_6 - SortOrder
|
Sort by Flag_6 (see type "UserField") |
Flag_7 - SortOrder
|
Sort by Flag_7 (see type "UserField") |
Flag_AufnahmeDetails - SortOrder
|
Sort by Flag_AufnahmeDetails (see type "UserField") |
Flag_Deleted - SortOrder
|
Sort by Flag_Deleted (see type "UserField") |
Flag_Details - SortOrder
|
Sort by Flag_Details (see type "UserField") |
Flag_FilterField - SortOrder
|
Sort by Flag_FilterField (see type "UserField") |
Flag_Sync - SortOrder
|
Sort by Flag_Sync (see type "UserField") |
ID_DT - SortOrder
|
Sort by ID_DT (see type "UserField") |
ID_Datentyp - SortOrder
|
Sort by ID_Datentyp (see type "UserField") |
ID_UF - SortOrder
|
Sort by ID_UF (see type "UserField") |
ID_Version - SortOrder
|
Sort by ID_Version (see type "UserField") |
Kategorie - SortOrder
|
Sort by Kategorie (see type "UserField") |
Modul_1 - SortOrder
|
Sort by Modul_1 (see type "UserField") |
Modul_2 - SortOrder
|
Sort by Modul_2 (see type "UserField") |
Modul_3 - SortOrder
|
Sort by Modul_3 (see type "UserField") |
Modul_4 - SortOrder
|
Sort by Modul_4 (see type "UserField") |
Modul_5 - SortOrder
|
Sort by Modul_5 (see type "UserField") |
Modul_6 - SortOrder
|
Sort by Modul_6 (see type "UserField") |
Modul_7 - SortOrder
|
Sort by Modul_7 (see type "UserField") |
Modul_8 - SortOrder
|
Sort by Modul_8 (see type "UserField") |
Modul_9 - SortOrder
|
Sort by Modul_9 (see type "UserField") |
Modul_10 - SortOrder
|
Sort by Modul_10 (see type "UserField") |
Modul_11 - SortOrder
|
Sort by Modul_11 (see type "UserField") |
Modul_12 - SortOrder
|
Sort by Modul_12 (see type "UserField") |
Modul_13 - SortOrder
|
Sort by Modul_13 (see type "UserField") |
Modul_14 - SortOrder
|
Sort by Modul_14 (see type "UserField") |
Modul_15 - SortOrder
|
Sort by Modul_15 (see type "UserField") |
UserField - SortOrder
|
Sort by UserField (see type "UserField") |
UserField_English - SortOrder
|
Sort by UserField_English (see type "UserField") |
UserField_French - SortOrder
|
Sort by UserField_French (see type "UserField") |
UserField_German - SortOrder
|
Sort by UserField_German (see type "UserField") |
UserField_Spanish - SortOrder
|
Sort by UserField_Spanish (see type "UserField") |
Example
{
"CountDecimal": "asc",
"Description": "asc",
"Flag_1": "asc",
"Flag_2": "asc",
"Flag_3": "asc",
"Flag_4": "asc",
"Flag_5": "asc",
"Flag_6": "asc",
"Flag_7": "asc",
"Flag_AufnahmeDetails": "asc",
"Flag_Deleted": "asc",
"Flag_Details": "asc",
"Flag_FilterField": "asc",
"Flag_Sync": "asc",
"ID_DT": "asc",
"ID_Datentyp": "asc",
"ID_UF": "asc",
"ID_Version": "asc",
"Kategorie": "asc",
"Modul_1": "asc",
"Modul_2": "asc",
"Modul_3": "asc",
"Modul_4": "asc",
"Modul_5": "asc",
"Modul_6": "asc",
"Modul_7": "asc",
"Modul_8": "asc",
"Modul_9": "asc",
"Modul_10": "asc",
"Modul_11": "asc",
"Modul_12": "asc",
"Modul_13": "asc",
"Modul_14": "asc",
"Modul_15": "asc",
"UserField": "asc",
"UserField_English": "asc",
"UserField_French": "asc",
"UserField_German": "asc",
"UserField_Spanish": "asc"
}