This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Types | |
class QueryType < Types::BaseObject | |
field :users, resolver: Resolvers::UsersResolver | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'search_object' | |
require 'search_object/plugin/graphql' | |
module Resolvers | |
class BaseSearchResolver | |
include ::SearchObject.module(:graphql) | |
scope { [] } | |
FILTER_BY_DATE_INPUT = begin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Resolvers | |
class UsersResolver < Resolvers::BaseSearchResolver | |
type Types::UserType.connection_type, null: false | |
scope { User.all } | |
add_search_for(User) | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'search_object' | |
require 'search_object/plugin/graphql' | |
module Resolvers | |
class BaseSearchResolver | |
include ::SearchObject.module(:graphql) | |
scope { [] } | |
def self.add_search_for(klass) | |
option(:search, type: String) { |scope, value| |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Resolvers | |
class UsersResolver < Resolvers::BaseSearchResolver | |
type Types::UserType.connection_type, null: false | |
scope { User.all } | |
add_filter_by_datetime_for(User) | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'search_object' | |
require 'search_object/plugin/graphql' | |
module Resolvers | |
class BaseSearchResolver | |
include ::SearchObject.module(:graphql) | |
scope { [] } | |
FILTER_BY_DATE_INPUT = begin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# frozen_string_literal: true | |
class ApplicationRecord < ActiveRecord::Base | |
self.abstract_class = true | |
def self.datetime_attributes | |
@datetime_attributes ||= columns_hash.select {|k,v| v.type == :datetime}.keys.sort | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Resolvers | |
class UsersResolver < Resolvers::BaseSearchResolver | |
type Types::UserType.connection_type, null: false | |
scope { User.all } | |
add_order_by_for(User) | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'search_object' | |
require 'search_object/plugin/graphql' | |
module Resolvers | |
class BaseSearchResolver | |
include ::SearchObject.module(:graphql) | |
ORDER_BY_DIRECTION_INPUT = begin | |
Class.new(Types::BaseEnum) do | |
graphql_name "OrderByDirection" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add the GarfieldPolicy to GraphQL directory | |
class GarfieldPolicy | |
attr_accessor :field | |
attr_accessor :options | |
def initialize(field:, options:) | |
@field = field | |
@options = options || {} | |
apply | |
freeze |