> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sensorup.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Maps Subgraph Reference

> Technical reference for the su-maps subgraph providing mapping and visualization services.

# Maps Subgraph Reference

The `su-maps` subgraph provides mapping, visualization, and geospatial services.

## Subgraph Information

* **Name**: `su-maps`
* **Routing URL**: `https://jeoej0m171.execute-api.us-west-2.amazonaws.com/poc/graphql`
* **Last Updated**: 2025-02-07
* **SDL**: [View Schema](../schemas/sdl/su-maps.graphql)

## Overview

Map configurations, layers, and geospatial visualization.

## Root Query Fields

```graphql theme={null}
extend type Query {
  maps: Maps
  mapsConfig: MapsConfig
}
```

## Root Mutation Fields

```graphql theme={null}
extend type Mutation {
  createMap(input: CreateMapInput!): MapMutationResult!
  cloneMap(id: ID!): MapMutationResult!
  updateMap(input: UpdateMapInput!): MapMutationResult!
  recordMapViewed(id: ID!): MapMutationResult!
  deleteMap(id: ID!): MapMutationResult!
}
```

## Related Resources

* **[Full SDL Schema](../schemas/sdl/su-maps.graphql)** - Complete type definitions
