I'm trying to get a Vue CLI app with Apollographql Server to connect to Neo4j.
I've used neo4j-graphql-js and the app can sucessfully connect to the Grandstack Server I have setup.
grand-stack\api\src\index.js
const driver = neo4j.driver(
process.env.NEO4J_URI || "bolt://localhost:7687",
neo4j.auth.basic(
process.env.NEO4J_USER || "neo4j",
process.env.NEO4J_PASSWORD || "test"
),
);
How to I provide the above connection info in Vue CLI Apollo Server?