All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.blazebit.query.connector.github.graphql.GitHubSchemaProvider Maven / Gradle / Ivy

The newest version!
/*
 * SPDX-License-Identifier: Apache-2.0
 * Copyright Blazebit
 */
package com.blazebit.query.connector.github.graphql;

import com.blazebit.query.spi.ConfigurationProvider;
import com.blazebit.query.spi.DataFetcher;
import com.blazebit.query.spi.QuerySchemaProvider;

import java.util.Set;

/**
 * @author Dimitar Prisadnikov
 * @since 1.0.6
 */
public final class GitHubSchemaProvider implements QuerySchemaProvider {
	@Override
	public Set> resolveSchemaObjects(ConfigurationProvider configurationProvider) {
		return Set.of(
				RepositoryDataFetcher.INSTANCE,
				OrganizationDataFetcher.INSTANCE
		);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy