You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If not too complex, we should implement this in a way that the skipped step if effectively removed from the pipeline. Otherwise a PassThrough would be enough
Consider a CSVW pipeline which often looks like below, where we remove the
csvw:
triples.The simple way to disable a step (skip it) would be to resolve a variable
<transform> p:variables [ p:variable [ p:name "KEEP_CSVW_META" ; p:value false ] ; ] ; . _:removeCsvwTriples a p:Step ; + p:if "KEEP_CSVW_META"^^p:VariableName ; .
So if
KEEP_CSVW_META
is truthy, the step will run.In to make more complex decision, the a function could be used
This function would be evaluated once, at the beginning.
The text was updated successfully, but these errors were encountered: