We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 90b3b0f + a215221 commit b56a297Copy full SHA for b56a297
src/navability/graphql/Blob.ts
@@ -1,4 +1,4 @@
1
-//TODO: Move all the file functionality to here as blob functionality.
+// TODO: Move all the file functionality to here as blob functionality.
2
3
export const QUERY_BLOBS = `
4
query Files {
src/navability/services/Blob.ts
@@ -26,9 +26,8 @@ export async function queryFiles(navAbilityClient: NavAbilityClient): Promise<Fi
26
export async function getDownloadUrl(navAbilityClient: NavAbilityClient, fileId: string) {
27
const result = await navAbilityClient.mutate({
28
mutation: gql(MUTATION_CREATE_DOWNLOAD),
29
- variables: { fileId: fileId },
+ variables: { fileId },
30
});
31
- console.log(result);
32
return result.data.url;
33
}
34
0 commit comments