Skip to content

Commit e09e837

Browse files
committed
Move into integrations/node folder
1 parent 7558449 commit e09e837

File tree

5 files changed

+4
-4
lines changed

5 files changed

+4
-4
lines changed

packages/tracing/src/integrations/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ export { Express } from './node/express';
22
export { Postgres } from './node/postgres';
33
export { Mysql } from './node/mysql';
44
export { Mongo } from './node/mongo';
5-
export { GraphQL } from './graphql';
6-
export { Apollo } from './apollo';
5+
export { GraphQL } from './node/graphql';
6+
export { Apollo } from './node/apollo';
77

88
// TODO(v7): Remove this export
99
// Please see `src/index.ts` for more details.

packages/tracing/test/integrations/apollo.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable @typescript-eslint/unbound-method */
22
import { Hub, Scope } from '@sentry/hub';
33

4-
import { Apollo } from '../../src/integrations/apollo';
4+
import { Apollo } from '../../src/integrations/node/apollo';
55
import { Span } from '../../src/span';
66

77
type ApolloResolverGroup = {

packages/tracing/test/integrations/graphql.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/* eslint-disable @typescript-eslint/unbound-method */
22
import { Hub, Scope } from '@sentry/hub';
33

4-
import { GraphQL } from '../../src/integrations/graphql';
4+
import { GraphQL } from '../../src/integrations/node/graphql';
55
import { Span } from '../../src/span';
66

77
const GQLExecute = {

0 commit comments

Comments
 (0)