https://dagster.io/ logo
Title
s

sourabh upadhye

08/31/2021, 9:40 AM
Is there a way to retrieve what runConfigData is missing from a config schema via GraphQL Api? P.S Not the PipelineConfigValidationInvalid error message.
a

alex

09/01/2021, 2:37 PM
PipelineConfigValidationInvalid
has an
error
field that returns
PipelineConfigValidationError
which contains
path
/
stack
/
reason
you can use
s

sourabh upadhye

09/01/2021, 6:33 PM
I noticed that but my use case is different here. I don't want to parse the info regarding which config parameter is missing from the message string. Would like to avoid unnecessary code. Thanks for the response though!
a

alex

09/01/2021, 6:44 PM
just to clarify the things i mentioned above are typed fields in the the GraphQL schema, not parts of the
message
string
s

sourabh upadhye

09/02/2021, 4:34 AM
Oh yes I did try out the typed fields in dagster but they don't provide me anything regarding my use case