Skip to content

Instantly share code, notes, and snippets.

@mczachurski
Last active May 28, 2019 13:26
Show Gist options
  • Save mczachurski/8f7313f9ee0be80bfbc97d5a367d0606 to your computer and use it in GitHub Desktop.
Save mczachurski/8f7313f9ee0be80bfbc97d5a367d0606 to your computer and use it in GitHub Desktop.
var serviceAssembly = typeof(IGraphQLType).GetTypeInfo().Assembly;
builder.RegisterAssemblyTypes(serviceAssembly)
.Where(t => t.GetInterfaces()
.Any(i => i.IsAssignableFrom(typeof (IGraphQLType))))
.AsSelf();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment