fix(graphql): Add jsonProps to SchemaField type (#9622)

This commit is contained in:
Pedro Silva 2024-01-12 17:31:54 +00:00 committed by GitHub
parent b926a3ede6
commit dc93f2e57b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -36,6 +36,7 @@ public class SchemaFieldMapper {
}
result.setIsPartOfKey(input.isIsPartOfKey());
result.setIsPartitioningKey(input.isIsPartitioningKey());
result.setJsonProps(input.getJsonProps());
return result;
}

View File

@ -2892,6 +2892,11 @@ type SchemaField {
Whether the field is part of a partitioning key schema
"""
isPartitioningKey: Boolean
"""
For schema fields that have other properties that are not modeled explicitly, represented as a JSON string.
"""
jsonProps: String
}
"""