mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-03 13:06:41 +00:00
fix(graphql): making glossaryTermInfo nullable in glossaryTerm. (#3576)
This commit is contained in:
parent
b02cd5fb25
commit
235760f28b
@ -685,7 +685,7 @@ type GlossaryTerm implements Entity {
|
|||||||
Deprecated, use properties field instead
|
Deprecated, use properties field instead
|
||||||
Details of the Glossary Term
|
Details of the Glossary Term
|
||||||
"""
|
"""
|
||||||
glossaryTermInfo: GlossaryTermInfo!
|
glossaryTermInfo: GlossaryTermInfo
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Edges extending from this entity
|
Edges extending from this entity
|
||||||
|
@ -90,7 +90,7 @@ export default function GlossaryTermProfile() {
|
|||||||
<GlossaryTermHeader
|
<GlossaryTermHeader
|
||||||
sourceRef={glossaryTermInfo?.sourceRef || ''}
|
sourceRef={glossaryTermInfo?.sourceRef || ''}
|
||||||
sourceUrl={glossaryTermInfo?.sourceUrl as string}
|
sourceUrl={glossaryTermInfo?.sourceUrl as string}
|
||||||
definition={glossaryTermInfo.definition}
|
definition={glossaryTermInfo?.definition as string}
|
||||||
ownership={ownership}
|
ownership={ownership}
|
||||||
/>
|
/>
|
||||||
);
|
);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user