For anyone landing here late, If you're using type script you can add it to a globa type definition
//global.d.ts
declare module '*.cypher' {
const content: string;
export default content;
}
then you can just do
import cypher from './mycypher.cypher'