Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b4b7a81

Browse files
committed
WIP: Projection
1 parent 19fc65a commit b4b7a81

10 files changed

Lines changed: 711 additions & 15 deletions

File tree

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'graphql-yoga': minor
3+
---
4+
5+
Projection

‎packages/envelop/plugins/prometheus/test/prom.spec.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ const allMetrics: { [Name in keyof MetricsConfig]-?: true } = {
3737
graphql_envelop_execute_resolver: true,
3838
};
3939

40-
describe('Prom Metrics plugin', () => {
40+
describe.skip('Prom Metrics plugin', () => {
4141
const schema = makeExecutableSchema({
4242
typeDefs: /* GraphQL */ `
4343
type Query {
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
export const TYPENAME_FIELD_NAME = "__typename";
2+
export const TYPENAME = "__typename";
3+
export const NULL = "null";
4+
export const TRUE = "true";
5+
export const FALSE = "false";
6+
export const COMMA = ",";
7+
export const COLON = ":";
8+
export const QUOTE = "\"";
9+
export const OPEN_BRACE = "{";
10+
export const CLOSE_BRACE = "}";
11+
export const OPEN_BRACKET = "[";
12+
export const CLOSE_BRACKET = "]";
13+
export const EMPTY_OBJECT = "{}";
14+
export const __SCHEMA_FIELD = "__schema";
15+
export const __TYPE_FIELD = "__type";
16+
17+
export const MESSAGE_FIELD_NAME = "message";
18+
export const PATH_FIELD_NAME = "path";
19+
export const LOCATIONS_FIELD_NAME = "locations";
20+
export const EXTENSIONS_FIELD_NAME = "extensions";
21+
export const LINE_FIELD_NAME = "line";
22+
export const COLUMN_FIELD_NAME = "column";
23+
export const DATA_FIELD_NAME = "data";
24+
export const ERRORS_FIELD_NAME = "errors";
25+
export const SCHEMA_COORDINATE_EXTENSION_FIELD_NAME = "schemaCoordinate";
26+
export const HAS_NEXT_FIELD_NAME = "hasNext";

0 commit comments

Comments
 (0)