Skip to content

Instantly share code, notes, and snippets.

@OmkarK45
Created January 12, 2022 05:40
Show Gist options
  • Save OmkarK45/e847a5d6612b5650c64c9ed58b323527 to your computer and use it in GitHub Desktop.
Save OmkarK45/e847a5d6612b5650c64c9ed58b323527 to your computer and use it in GitHub Desktop.
Convert Relay Pagination Response to normal list
import { useMemo } from 'react';
type Connection<T> = {
readonly edges : readonly ({
readonly node? : T | null ;
readonly cursor?:string
} | null)[];
};
export function useConnection<T>(connection?:Connection<T>){
return useMemo(()=> {
connection ?
(connection.edges
.filter((edge)=> !!edge?.node))
.map((edge)=> edge!.node) as T[])
}, [connection?.edges])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment