find_loadzones#
Type: Query | Auth Required: Yes
Returns a compact list of load zones grouped by type — ideal for discovering valid loadZoneId / layerId pairs.
from dlubal.api.geo_zone_tool import GeoZoneTool, Language
gzt = GeoZoneTool(token="YOUR_TOKEN")
# Note: This query uses the GraphQL API directly.
# The Python SDK does not expose a dedicated method for this query.
# Use the GraphQL example with an HTTP client.
using Dlubal.API.GeoZoneTool;
var gzt = new GeoZoneToolClient("YOUR_TOKEN");
// Note: This query uses the GraphQL API directly.
// The C# SDK does not expose a dedicated method for this query.
// Use the GraphQL example with an HTTP client.
query {
findLoadzones(
countryCode: "DE"
language: EN
) {
country
countryCode
typeGroups {
name
loadzones {
standard annex loadzoneId
layers { id name }
}
}
}
}
Input#
Parameter |
Type |
Required |
Description |
|---|---|---|---|
|
String! |
Yes |
ISO country code |
|
LanguageEnum |
No |
Response language (default EN) |
Response#
Returns LoadzoneGroupShortType.