-
Notifications
You must be signed in to change notification settings - Fork 21
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
allow to register Arg at runtime dynamically #51
Comments
Could you describe use case for this a bit more? |
Also, note you could just: import { Arg } from 'typegql'
const paramIndex = 3;
Arg({
type: String,
isNullable: true
})(targetClass, fieldName, paramIndex); And I think it's very similar to what you've written in your example :) The only difference is that you'd need to set |
@pie6k I tried that exact thing on a dynamically added property and it did not work. It might work if I call it on a property which is defined at design time. I'd like to add both the property and the param decorator at runtime. I will put together a testcase. |
Could you please describe why exactly you need this? |
sure. For our production API at @LeapLabs we use objection.js as our abstraction over a database. We have many models-around 40 with many relations between them. Usually a model has at least 1, but we have many which have 4-6 and more. |
I've added test case and it works: it('Will allow registering argument at runtime', () => {
@ObjectType()
class Foo {
@Field()
bar(
baz: string,
bazRequired: string,
): string {
return baz;
}
}
Arg({type: String, isNullable: true})(Foo.prototype, 'bar', 0);
Arg({type: String, isNullable: false})(Foo.prototype, 'bar', 1);
const [bazArg, bazRequiredArg] = compileObjectType(
Foo,
).getFields().bar.args;
expect(bazArg.type).toBe(GraphQLString);
expect(bazRequiredArg.type).toEqual(new GraphQLNonNull(GraphQLString));
}); Note that decorator is fired on |
@pie6k that works indeed, but my issue is when I have a Field added at runtime also. So it would need to be like: it('Will allow registering a Field and Arg at runtime', () => {
@ObjectType()
class Foo { }
Foo.prototype.bar = function(baz: string, bazRequired: string) {}
Field({
type: String,
isNullable
})(Foo.prototype, 'bar')
Arg({type: String, isNullable: true})(Foo.prototype, 'bar', 0);
Arg({type: String, isNullable: false})(Foo.prototype, 'bar', 1);
const [bazArg, bazRequiredArg] = compileObjectType(
Foo,
).getFields().bar.args;
expect(bazArg.type).toBe(GraphQLString);
expect(bazRequiredArg.type).toEqual(new GraphQLNonNull(GraphQLString));
}); this is failing for me. |
it is currently possible to register a
Field
onto a class at runtime, by invoking manually like this:however this is not possible with
Arg
because for dynamically created method, we don't have any metadata. ThecompileFieldArgs
doesn't register any arguments, because callingobviously returns undefined and the whole
compileFieldArgs
function just returns without doing anything more.It would be great If we could have some kind of
The text was updated successfully, but these errors were encountered: