join
Joins array elements into a single string using the 'sep' separator (defaults to empty string). Null values become empty strings. Non-string values (integers etc) are stringified. Example: _fn @join(refs: ["a", "b"], sep: ", ") returns "val_a, val_b".
directive @join(
ref: String
refs: [String!]
sep: String
) on FIELD