This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const TSVECTOR_TYPE_ID = 3614; | |
export const PostGraphileTSVPlugin = builder => { | |
builder.hook('infection', (inflection, build) => { | |
return build.extend(inflection, { | |
fullTextScalarTypeName() { | |
return `FullText`; | |
}, | |
pgTsvRank(fieldName) { | |
return this.camelCase(`${fieldName}-rank`); |