This repository was archived by the owner on Sep 27, 2023. It is now read-only.
This repository was archived by the owner on Sep 27, 2023. It is now read-only.
Duplicate imports of relay-runtime #158
Open
Description
Check this
import { ConcreteRequest } from "relay-runtime";
import { FragmentRefs } from "relay-runtime";
export type HomeRootIssuesQueryVariables = {
owner: string;
name: string;
};
export type HomeRootIssuesQueryResponse = {
readonly repository: {
readonly " $fragmentRefs": FragmentRefs<"Issues_repository">;
} | null;
};
export type HomeRootIssuesQuery = {
readonly response: HomeRootIssuesQueryResponse;
readonly variables: HomeRootIssuesQueryVariables;
};
It would be nice if these two imports
import { ConcreteRequest } from "relay-runtime";
import { FragmentRefs } from "relay-runtime";
were just one
import { ConcreteRequest, FragmentRefs } from "relay-runtime";