Skip to content

Commit

Permalink
update fixture tests
Browse files Browse the repository at this point in the history
Reviewed By: evanyeung

Differential Revision: D56579382

fbshipit-source-id: 28caa3c67082d4507b594d44d6bd14efabd4bda3
  • Loading branch information
monicatang authored and facebook-github-bot committed Apr 25, 2024
1 parent d579012 commit 23fe9d2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ module.exports = ((node/*: any*/)/*: Fragment<

//- __generated__/PersonComponentQuery.graphql.js
/**
* <auto-generated> SignedSource<<3a554531319b92d0d01b7d18588bb62f>>
* <auto-generated> SignedSource<<55e2fc0b1fc4c59e779ba98f37cd0f97>>
* @flow
* @lightSyntaxTransform
* @nogrep
Expand All @@ -192,19 +192,19 @@ module.exports = ((node/*: any*/)/*: Fragment<

/*::
import type { ClientRequest, ClientQuery } from 'relay-runtime';
import {Admin as adminRelayModelInstanceResolverType} from "AdminTypeResolvers";
import {User as userRelayModelInstanceResolverType} from "UserTypeResolvers";
import type { Admin____relay_model_instance$data } from "Admin____relay_model_instance.graphql";
import type { User____relay_model_instance$data } from "User____relay_model_instance.graphql";
import {description as iActorDescriptionResolverType} from "IActorResolvers";
// Type assertion validating that `iActorDescriptionResolverType` resolver is correctly implemented.
// A type error here indicates that the type signature of the resolver module is incorrect.
(iActorDescriptionResolverType: (
model: ReturnType<typeof adminRelayModelInstanceResolverType> | ReturnType<typeof userRelayModelInstanceResolverType>,
model: Admin____relay_model_instance$data['__relay_model_instance'] | User____relay_model_instance$data['__relay_model_instance'],
) => ?string);
import {name as iPersonNameResolverType} from "IPersonResolvers";
// Type assertion validating that `iPersonNameResolverType` resolver is correctly implemented.
// A type error here indicates that the type signature of the resolver module is incorrect.
(iPersonNameResolverType: (
model: ReturnType<typeof adminRelayModelInstanceResolverType> | ReturnType<typeof userRelayModelInstanceResolverType>,
model: Admin____relay_model_instance$data['__relay_model_instance'] | User____relay_model_instance$data['__relay_model_instance'],
) => ?string);
export type PersonComponentQuery$variables = {||};
export type PersonComponentQuery$data = {|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ interface IActor {
==================================== OUTPUT ===================================
//- __generated__/ActorComponentFragment.graphql.js
/**
* <auto-generated> SignedSource<<d45747efd4005039d5fb04918732f360>>
* <auto-generated> SignedSource<<29a6721ae972d24abc6fd33ed4cae7bd>>
* @flow
* @lightSyntaxTransform
* @nogrep
Expand All @@ -76,14 +76,14 @@ interface IActor {

/*::
import type { Fragment, ReaderFragment } from 'relay-runtime';
import type { Admin____relay_model_instance$data } from "Admin____relay_model_instance.graphql";
import type { User____relay_model_instance$data } from "User____relay_model_instance.graphql";
import type { FragmentType } from "relay-runtime";
import {Admin as adminRelayModelInstanceResolverType} from "AdminTypeResolvers";
import {User as userRelayModelInstanceResolverType} from "UserTypeResolvers";
import {description as iActorDescriptionResolverType} from "IActorResolvers";
// Type assertion validating that `iActorDescriptionResolverType` resolver is correctly implemented.
// A type error here indicates that the type signature of the resolver module is incorrect.
(iActorDescriptionResolverType: (
model: ReturnType<typeof adminRelayModelInstanceResolverType> | ReturnType<typeof userRelayModelInstanceResolverType>,
model: Admin____relay_model_instance$data['__relay_model_instance'] | User____relay_model_instance$data['__relay_model_instance'],
) => ?string);
declare export opaque type ActorComponentFragment$fragmentType: FragmentType;
export type ActorComponentFragment$data = {|
Expand Down Expand Up @@ -280,7 +280,7 @@ module.exports = ((node/*: any*/)/*: Fragment<

//- __generated__/PersonComponentFragment.graphql.js
/**
* <auto-generated> SignedSource<<af781562da3ea98baeb304e107b03b34>>
* <auto-generated> SignedSource<<4ea82f388eeb21ecbc79f404917c194e>>
* @flow
* @lightSyntaxTransform
* @nogrep
Expand All @@ -292,14 +292,14 @@ module.exports = ((node/*: any*/)/*: Fragment<

/*::
import type { Fragment, ReaderFragment } from 'relay-runtime';
import type { Admin____relay_model_instance$data } from "Admin____relay_model_instance.graphql";
import type { User____relay_model_instance$data } from "User____relay_model_instance.graphql";
import type { FragmentType } from "relay-runtime";
import {Admin as adminRelayModelInstanceResolverType} from "AdminTypeResolvers";
import {User as userRelayModelInstanceResolverType} from "UserTypeResolvers";
import {name as iPersonNameResolverType} from "IPersonResolvers";
// Type assertion validating that `iPersonNameResolverType` resolver is correctly implemented.
// A type error here indicates that the type signature of the resolver module is incorrect.
(iPersonNameResolverType: (
model: ReturnType<typeof adminRelayModelInstanceResolverType> | ReturnType<typeof userRelayModelInstanceResolverType>,
model: Admin____relay_model_instance$data['__relay_model_instance'] | User____relay_model_instance$data['__relay_model_instance'],
) => ?string);
declare export opaque type PersonComponentFragment$fragmentType: FragmentType;
export type PersonComponentFragment$data = {|
Expand Down

0 comments on commit 23fe9d2

Please sign in to comment.