function printDirective()

in src/printers.ts [275:285]


function printDirective(directive) {
    return (
        printDescription(directive) +
        'directive @' +
        directive.name +
        printArgs(directive.args) +
        (directive.isRepeatable ? ' repeatable' : '') +
        ' on ' +
        directive.locations.join(' | ')
    );
}