graph api calls to sandbox

Summary: We are working on integrating new NT debug api and debug metadata is stored in sandbox

Reviewed By: jknoxville

Differential Revision: D21155832

fbshipit-source-id: 2a7c8303e62793092f9e5b27f61d9db38eab14c5
This commit is contained in:
Timur Valiev
2020-04-28 05:57:19 -07:00
committed by Facebook GitHub Bot
parent 1cf3c30b7c
commit 79937f198d
2 changed files with 16 additions and 1 deletions

View File

@@ -18,6 +18,17 @@ export async function internGraphPOSTAPIRequest(
_formFields: {
[key: string]: any;
} = {},
_internGraphUrl?: string,
): Promise<any> {
throw new Error('Feature not implemented');
}
export async function internGraphGETAPIRequest(
_endpoint: string,
_params: {
[key: string]: any;
} = {},
_internGraphUrl?: string,
): Promise<any> {
throw new Error('Feature not implemented');
}

View File

@@ -17,7 +17,11 @@ export {serialize, deserialize} from './utils/serialization';
export * from './utils/jsonTypes';
export {default as GK} from './fb-stubs/GK';
export {default as createPaste} from './fb-stubs/createPaste';
export {internGraphPOSTAPIRequest, graphQLQuery} from './fb-stubs/user';
export {
internGraphGETAPIRequest,
internGraphPOSTAPIRequest,
graphQLQuery,
} from './fb-stubs/user';
export {
FlipperBasePlugin,
FlipperPlugin,