File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ interface Config {
1515 repositories : string [ ] ;
1616 ref ?: string ;
1717 language : string ;
18+ bundle : boolean ;
1819}
1920
2021export default async function runMultiQuery ( uri ?: Uri ) {
@@ -41,6 +42,7 @@ export default async function runMultiQuery(uri?: Uri) {
4142
4243 const ref = config . ref || 'main' ;
4344 const language = config . language ;
45+ const bundleDatabase = config . bundle || false ;
4446 const repositories = JSON . stringify ( config . repositories ) ;
4547 const queryRunGuid = `${ path . basename ( queryFile ) } -${ Date . now ( ) } ` ;
4648
@@ -59,7 +61,8 @@ export default async function runMultiQuery(uri?: Uri) {
5961 language,
6062 repositories,
6163 query,
62- 'query_run_guid' : queryRunGuid
64+ 'query_run_guid' : queryRunGuid ,
65+ 'bundle_database' : String ( bundleDatabase )
6366 }
6467 } )
6568 } ) ;
You can’t perform that action at this time.
0 commit comments