admin管理员组文章数量:1341861
I am using graphql with generated types and struggling with how to convert them to the type I need to pass it to my data service calls.
@graphql-codegen has given me an args type of
export type QueryOrdersArgs = {
ids: Array<Maybe<Scalars['ID']>>;
};
(I don't really understand why its generated as a Maybe type, as the graphql schema enforces that I only query with a parameter of an array of ids (strings))
In my resolver, I need to call into a service which takes an array of strings. Everything works as expected (with @ts-ignore) but now I need to fix up my types.
const { orderIds } = args;
const result = getOrder(orderIds);
I have a codesandbox with just the types here =/index.ts
export type Maybe<T> = T | null;
export type Scalars = {
ID: string;
String: string;
Boolean: boolean;
Int: number;
Float: number;
_FieldSet: any;
};
let ids: Array<Maybe<Scalars["ID"]>>;
export const getOrders = (orderIds: Array<string>) => {
orderIds.map((x) => console.log(x));
};
getOrders(ids);
I currently get the error - "TS2345: Argument of type 'Maybe[]' is not assignable to parameter of type 'string[]'."
Any help greatly appreciated
I am using graphql with generated types and struggling with how to convert them to the type I need to pass it to my data service calls.
@graphql-codegen has given me an args type of
export type QueryOrdersArgs = {
ids: Array<Maybe<Scalars['ID']>>;
};
(I don't really understand why its generated as a Maybe type, as the graphql schema enforces that I only query with a parameter of an array of ids (strings))
In my resolver, I need to call into a service which takes an array of strings. Everything works as expected (with @ts-ignore) but now I need to fix up my types.
const { orderIds } = args;
const result = getOrder(orderIds);
I have a codesandbox with just the types here https://codesandbox.io/s/typescript-playground-export-forked-3fpx9?file=/index.ts
export type Maybe<T> = T | null;
export type Scalars = {
ID: string;
String: string;
Boolean: boolean;
Int: number;
Float: number;
_FieldSet: any;
};
let ids: Array<Maybe<Scalars["ID"]>>;
export const getOrders = (orderIds: Array<string>) => {
orderIds.map((x) => console.log(x));
};
getOrders(ids);
I currently get the error - "TS2345: Argument of type 'Maybe[]' is not assignable to parameter of type 'string[]'."
Any help greatly appreciated
Share asked Apr 7, 2021 at 15:47 tmctmc 5141 gold badge8 silver badges26 bronze badges3 Answers
Reset to default 6If you're confident that it shouldn't be a Maybe type, you can cast it:
type Maybe<T> = T | null;
const maybeArray: Maybe<string>[] = [];
let stringArray: string[] = maybeArray as string[];
or in your case
getOrders(ids as string[]);
To remove Maybe
, you need to filter non nullable items
const nonNullable = <T>(value: T): value is NonNullable<T> =>
value !== null && value !== undefined
getOrders(ids.filter(nonNullable));
But if you want to remove the Maybe
from your schema, you need to an exclamation mark !
in the graphql schema to be a required field
This is a method that I use to convert the list safely.
export const RemoveMaybeAsList = <T>(items: Maybe<T>[]): T[] => items.filter((x) => !!x) as T[];
It does of course reduce performance as it requires a O(N) scan through the list.
Usage:
const ensuredValues = RemoveMaybeAsList(maybeValues)
本文标签: javascriptConvert Maybeltstringgt39 to 39stringStack Overflow
版权声明:本文标题:javascript - Convert Maybe<string>[]' to 'string[] - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743686193a2521936.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论