We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I naively tried this:
function emitAllServiceVersions() { const [services] = getAllHttpServices(context.program); for (const service of services) { const versionProjections = buildVersionProjections(context.program, service.namespace); for (const versionProjection of versionProjections) { const projectedProgram = projectProgram(context.program, versionProjection.projections); ...
But then I later used service.operations and realized this is computed before I did the projection.
I see the OpenAPI emitter uses listServices and not getAllHttpServices. Is this what we'd recommend? Is getAllHttpServices a trap in this respect?
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
est: 1
No branches or pull requests
I naively tried this:
But then I later used service.operations and realized this is computed before I did the projection.
I see the OpenAPI emitter uses listServices and not getAllHttpServices. Is this what we'd recommend? Is getAllHttpServices a trap in this respect?
The text was updated successfully, but these errors were encountered: