Created
March 9, 2018 17:01
-
-
Save sneljo1/f5ba36e303cf0747328de8fe41038178 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
async getQueryResult(stubHelper: StubHelper, args: string[]): Promise<any> { | |
const query = { | |
selector: { | |
model: { | |
"$in": ['Nano', "Punto"] | |
} | |
} | |
}; | |
return await stubHelper.getQueryResultAsList(query); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment