returns MappingCoverage
Coverage stats for a mapping.
| Name | Type | Description |
|---|---|---|
| mappingId | String! | The mapping structure to report coverage for. |
Coverage stats for a mapping.
| Field | Type | Description |
|---|---|---|
| mappingId | String! | — |
| totalCoaElements | Int! | — |
| mappedCount | Int! | — |
| unmappedCount | Int! | — |
| coveragePercent | Float! | — |
| highConfidence | Int! | — |
| mediumConfidence | Int! | — |
| lowConfidence | Int! | — |
| unreachableCount | Int! | — |
| unreachable | [UnreachableMappingType!]! | — |
{ mappingCoverage(mappingId: "...") { mappingId totalCoaElements mappedCount unmappedCount } }curl -X POST "https://api.robosystems.ai/extensions/$GRAPH_ID/graphql" \
-H "X-API-Key: $ROBOSYSTEMS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"query": "{ mappingCoverage(mappingId: \"...\") { mappingId totalCoaElements mappedCount unmappedCount } }"}'