Skip to content

Commit

Permalink
fix: remove unnecessary readonly
Browse files Browse the repository at this point in the history
  • Loading branch information
tbwiss committed Aug 3, 2023
1 parent 675a253 commit 9b81bff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/introspector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const driver = neo4j.driver("neo4j://localhost:7687", neo4j.auth.basic("neo4j",
const sessionFactory = () => driver.session({ defaultAccessMode: neo4j.session.READ });

async function main() {
const genericStruct = await toGenericStruct(sessionFactory, readonly);
const genericStruct = await toGenericStruct(sessionFactory);
// Programmatically transform to what you need.
}

Expand Down

0 comments on commit 9b81bff

Please sign in to comment.