(value: string)
| 10 | } |
| 11 | |
| 12 | export function escapeODataString(value: string): string { |
| 13 | return value.replace(/'/g, "''") |
| 14 | } |
| 15 | |
| 16 | export function getGraphNextPageUrl(data: object): string | undefined { |
| 17 | const nextLink = (data as Record<string, unknown>)['@odata.nextLink'] |