Overview
  • Namespace
  • Class

Namespaces

  • WPGraphQL
    • Data
    • Type
      • Avatar
      • Comment
        • Connection
      • CommentAuthor
      • EditLock
      • Enum
      • MediaItem
        • Mutation
      • Plugin
        • Connection
      • PostObject
        • Connection
        • Mutation
      • PostType
      • Setting
      • Taxonomy
      • TermObject
        • Connection
        • Mutation
      • Theme
        • Connection
      • Union
      • User
        • Connection
        • Mutation
    • Utils

Classes

  • WPGraphQL\AppContext
  • WPGraphQL\Data\Config
  • WPGraphQL\Data\ConnectionResolver
  • WPGraphQL\Data\DataSource
  • WPGraphQL\Data\Loader
  • WPGraphQL\Router
  • WPGraphQL\Type\Avatar\AvatarType
  • WPGraphQL\Type\Comment\CommentQuery
  • WPGraphQL\Type\Comment\CommentType
  • WPGraphQL\Type\Comment\Connection\CommentConnectionArgs
  • WPGraphQL\Type\Comment\Connection\CommentConnectionDefinition
  • WPGraphQL\Type\Comment\Connection\CommentConnectionResolver
  • WPGraphQL\Type\CommentAuthor\CommentAuthorQuery
  • WPGraphQL\Type\CommentAuthor\CommentAuthorType
  • WPGraphQL\Type\EditLock\EditLockType
  • WPGraphQL\Type\Enum\MediaItemStatusEnumType
  • WPGraphQL\Type\Enum\MimeTypeEnumType
  • WPGraphQL\Type\Enum\PostObjectFieldFormatEnumType
  • WPGraphQL\Type\Enum\PostStatusEnumType
  • WPGraphQL\Type\Enum\PostTypeEnumType
  • WPGraphQL\Type\Enum\RelationEnumType
  • WPGraphQL\Type\Enum\TaxonomyEnumType
  • WPGraphQL\Type\MediaItem\MediaItemType
  • WPGraphQL\Type\MediaItem\Mutation\MediaItemCreate
  • WPGraphQL\Type\MediaItem\Mutation\MediaItemDelete
  • WPGraphQL\Type\MediaItem\Mutation\MediaItemMutation
  • WPGraphQL\Type\MediaItem\Mutation\MediaItemUpdate
  • WPGraphQL\Type\Plugin\Connection\PluginConnectionDefinition
  • WPGraphQL\Type\Plugin\Connection\PluginConnectionResolver
  • WPGraphQL\Type\Plugin\PluginQuery
  • WPGraphQL\Type\Plugin\PluginType
  • WPGraphQL\Type\PostObject\Connection\PostObjectConnectionArgs
  • WPGraphQL\Type\PostObject\Connection\PostObjectConnectionArgsDateQuery
  • WPGraphQL\Type\PostObject\Connection\PostObjectConnectionDefinition
  • WPGraphQL\Type\PostObject\Connection\PostObjectConnectionResolver
  • WPGraphQL\Type\PostObject\Mutation\PostObjectCreate
  • WPGraphQL\Type\PostObject\Mutation\PostObjectDelete
  • WPGraphQL\Type\PostObject\Mutation\PostObjectMutation
  • WPGraphQL\Type\PostObject\Mutation\PostObjectUpdate
  • WPGraphQL\Type\PostObject\Mutation\TermObjectDelete
  • WPGraphQL\Type\PostObject\PostObjectQuery
  • WPGraphQL\Type\PostObject\PostObjectType
  • WPGraphQL\Type\PostType\PostTypeType
  • WPGraphQL\Type\RootMutationType
  • WPGraphQL\Type\RootQueryType
  • WPGraphQL\Type\Setting\SettingQuery
  • WPGraphQL\Type\Setting\SettingType
  • WPGraphQL\Type\Taxonomy\TaxonomyType
  • WPGraphQL\Type\TermObject\Connection\TermObjectConnectionArgs
  • WPGraphQL\Type\TermObject\Connection\TermObjectConnectionDefinition
  • WPGraphQL\Type\TermObject\Connection\TermObjectConnectionResolver
  • WPGraphQL\Type\TermObject\Mutation\TermObjectCreate
  • WPGraphQL\Type\TermObject\Mutation\TermObjectMutation
  • WPGraphQL\Type\TermObject\Mutation\TermObjectUpdate
  • WPGraphQL\Type\TermObject\TermObjectQuery
  • WPGraphQL\Type\TermObject\TermObjectType
  • WPGraphQL\Type\Theme\Connection\ThemeConnectionDefinition
  • WPGraphQL\Type\Theme\Connection\ThemeConnectionResolver
  • WPGraphQL\Type\Theme\ThemeType
  • WPGraphQL\Type\Union\CommentAuthorUnionType
  • WPGraphQL\Type\Union\PostObjectUnionType
  • WPGraphQL\Type\Union\TermObjectUnionType
  • WPGraphQL\Type\User\Connection\UserConnectionArgs
  • WPGraphQL\Type\User\Connection\UserConnectionDefinition
  • WPGraphQL\Type\User\Connection\UserConnectionResolver
  • WPGraphQL\Type\User\Mutation\UserCreate
  • WPGraphQL\Type\User\Mutation\UserDelete
  • WPGraphQL\Type\User\Mutation\UserMutation
  • WPGraphQL\Type\User\Mutation\UserUpdate
  • WPGraphQL\Type\User\UserQuery
  • WPGraphQL\Type\User\UserType
  • WPGraphQL\Type\WPEnumType
  • WPGraphQL\Type\WPInputObjectType
  • WPGraphQL\Type\WPObjectType
  • WPGraphQL\Types
  • WPGraphQL\Utils\InstrumentSchema
  • WPGraphQL\WPSchema

Interfaces

  • WPGraphQL\Data\ConnectionResolverInterface
  1   2   3   4   5   6   7   8   9  10  11  12  13  14  15  16  17  18  19  20  21  22  23  24  25  26  27  28  29  30  31  32  33  34  35  36  37  38  39  40  41  42  43  44  45  46  47  48  49  50  51  52  53  54  55  56  57  58  59  60  61  62  63  64  65  66  67  68  69  70  71  72  73  74  75  76  77  78  79  80  81  82  83  84  85  86  87  88  89  90  91  92  93  94  95  96  97  98  99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 
<?php
namespace WPGraphQL\Type\PostObject\Connection;

use GraphQL\Type\Definition\EnumType;
use WPGraphQL\Type\WPEnumType;
use WPGraphQL\Type\WPInputObjectType;
use WPGraphQL\Types;

/**
 * Class PostObjectConnectionArgsDateQuery
 *
 * This defines the input fields for date queries
 *
 * @package WPGraphQL\Type
 * @since 0.0.5
 */
class PostObjectConnectionArgsDateQuery extends WPInputObjectType {

    /**
     * This holds the field definitions
     * @var array $fields
     * @since 0.0.5
     */
    public static $fields;

    /**
     * Holds the date_after input object definition
     * @var WPInputObjectType
     * @since 0.0.5
     */
    private static $date_after;

    /**
     * Holds the date_before input object definition
     * @var WPInputObjectType
     * @since 0.0.5
     */
    private static $date_before;

    /**
     * Holds the column_enum EnumType definition
     * @var EnumType
     * @since 0.0.5
     */
    private static $column_enum;

    /**
     * DateQueryType constructor.
     * @since 0.0.5
     */
    public function __construct( $config = [] ) {
        $config['name'] = 'DateQuery';
        $config['fields'] = self::fields();
        parent::__construct( $config );
    }

    /**
     * fields
     *
     * This defines the fields that make up the DateQueryType
     *
     * @return array|null
     * @since 0.0.5
     */
    private static function fields() {

        if ( null === self::$fields ) :
            self::$fields = [
                'year' => [
                    'type' => Types::int(),
                    'description' => __( '4 digit year (e.g. 2017)', 'wp-graphql' ),
                ],
                'month' => [
                    'type' => Types::int(),
                    'description' => __( 'Month number (from 1 to 12)', 'wp-graphql' ),
                ],
                'week' => [
                    'type' => Types::int(),
                    'description' => __( 'Week of the year (from 0 to 53)', 'wp-graphql' ),
                ],
                'day' => [
                    'type' => Types::int(),
                    'description' => __( 'Day of the month (from 1 to 31)', 'wp-graphql' ),
                ],
                'hour' => [
                    'type' => Types::int(),
                    'description' => __( 'Hour (from 0 to 23)', 'wp-graphql' ),
                ],
                'minute' => [
                    'type' => Types::int(),
                    'description' => __( 'Minute (from 0 to 59)', 'wp-graphql' ),
                ],
                'second' => [
                    'type' => Types::int(),
                    'description' => __( 'Second (0 to 59)', 'wp-graphql' ),
                ],
                'after' => [
                    'type' => self::date_after(),
                ],
                'before' => [
                    'type' => self::date_before(),
                ],
                'inclusive' => [
                    'type' => Types::boolean(),
                    'description' => __( 'For after/before, whether exact value should be matched or not', 'wp-graphql' ),
                ],
                'compare' => [
                    'type' => Types::string(),
                    'description' => __( 'For after/before, whether exact value should be matched or not', 'wp-graphql' ),
                ],
                'column' => [
                    'type' => self::column_enum(),
                    'description' => __( 'Column to query against', 'wp-graphql' ),
                ],
                'relation' => [
                    'type' => Types::relation_enum(),
                    'description' => __( 'OR or AND, how the sub-arrays should be compared', 'wp-graphql' ),
                ],
            ];
        endif;
        return self::prepare_fields( self::$fields, 'DateQuery' );
    }

    /**
     * column_enum
     * Creates an Enum type with the columns that can be queried against for the DateQuery
     * @return EnumType|null
     * @since 0.0.5
     */
    private static function column_enum() {

        if ( null === self::$column_enum ) :
            self::$column_enum = new WPEnumType([
                'name' => 'DateColumn',
                'values' => [
                    'DATE' => [
                        'value' => 'post_date',
                    ],
                    'MODIFIED' => [
                        'value' => 'post_modified',
                    ],
                ],
            ]);
        endif;
        return self::$column_enum;
    }

    /**
     * date_after
     * Creates the date_after input field that allows "after" paramaters
     * to be entered
     * @return WPInputObjectType|null
     * @since 0.0.5
     */
    private static function date_after() {
        if ( null === self::$date_after ) :
            self::$date_after = new WPInputObjectType( [
                'name' => 'DateAfter',
                'fields' => self::prepare_fields( [
                    'year' => [
                        'type' => Types::int(),
                        'description' => __( '4 digit year (e.g. 2017)', 'wp-graphql' ),
                    ],
                    'month' => [
                        'type' => Types::int(),
                        'description' => __( 'Month number (from 1 to 12)', 'wp-graphql' ),
                    ],
                    'day' => [
                        'type' => Types::int(),
                        'description' => __( 'Day of the month (from 1 to 31)', 'wp-graphql' ),
                    ],
                ], 'DateAfter' ),
            ] );
        endif;
        return self::$date_after;
    }

    /**
     * date_before
     * Creates the date_before input field that allows "before" paramaters
     * to be entered
     * @return WPInputObjectType|null
     * @since 0.0.5
     */
    private static function date_before() {

        if ( null === self::$date_before ) :
            self::$date_before = new WPInputObjectType( [
                'name' => 'DateBefore',
                'fields' => self::prepare_fields( [
                    'year' => [
                        'type' => Types::int(),
                        'description' => __( '4 digit year (e.g. 2017)', 'wp-graphql' ),
                    ],
                    'month' => [
                        'type' => Types::int(),
                        'description' => __( 'Month number (from 1 to 12)', 'wp-graphql' ),
                    ],
                    'day' => [
                        'type' => Types::int(),
                        'description' => __( 'Day of the month (from 1 to 31)', 'wp-graphql' ),
                    ],
                ], 'DateBefore' ),
            ] );
        endif;
        return self::$date_before;
    }

}
API documentation generated by ApiGen