()
| 196 | * Note: validateProperties is set to false for backward compatibility with existing tests. |
| 197 | */ |
| 198 | export function createFlexibleGraph(): Graph<FlexibleTestSchema> { |
| 199 | return new Graph({ |
| 200 | schema: flexibleTestSchema, |
| 201 | storage: new InMemoryGraphStorage(), |
| 202 | validateProperties: false, |
| 203 | }); |
| 204 | } |
| 205 | |
| 206 | /** |
| 207 | * Comprehensive schema for testing all new query features including |
no outgoing calls
no test coverage detected