mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-27 01:48:24 +00:00
fix(graphql): Add jsonProps to SchemaField type (#9622)
This commit is contained in:
parent
b926a3ede6
commit
dc93f2e57b
@ -36,6 +36,7 @@ public class SchemaFieldMapper {
|
||||
}
|
||||
result.setIsPartOfKey(input.isIsPartOfKey());
|
||||
result.setIsPartitioningKey(input.isIsPartitioningKey());
|
||||
result.setJsonProps(input.getJsonProps());
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
@ -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
|
||||
}
|
||||
|
||||
"""
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user