Skip to content
New issue

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

How to get latest version number of a schema? #220

Open
louislow opened this issue Nov 16, 2022 · 0 comments
Open

How to get latest version number of a schema? #220

louislow opened this issue Nov 16, 2022 · 0 comments

Comments

@louislow
Copy link

louislow commented Nov 16, 2022

const name = schema.namespace + '.' + schema.name;
const subSchemas = await schemaRegistry.register(
                        { type: SchemaType.AVRO, schema: JSON.stringify(schema) },
                        { subject: name }
);

const parentSchema = await schemaRegistry.register({
                type: SchemaType.AVRO,
                schema: JSON.stringify(schema),
                references: ...  // We can obtain details like name and subject from subSchemas, but not the version here
});
);

There isn't a way to retrieve the version number of the registered schema? How can we set references without version details?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant