Customer Portal

Share state between nodes

Comments 1

  • Avatar
    jurban
    0
    Comment actions Permalink
    Hi,
    this is usually solved by having a special field in the records which flow through your graph. For example an "isError" boolean field which would indicate validation error. You could modify the metadata of the data you're validating and add the special field. Then you would set the field value during your validation. Example:

    original data: NAME | SURNAME
    after validation: NAME | SURNAME | false (i.e. no error)

    Jaro

Please sign in to leave a comment.