mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 01:24:46 +02:00
16 lines
246 B
PHP
16 lines
246 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Enums\GraphQL\Field;
|
|
|
|
enum AggregateFunction: string
|
|
{
|
|
case AVG = 'avg';
|
|
case COUNT = 'count';
|
|
case EXISTS = 'exists';
|
|
case MAX = 'max';
|
|
case MIN = 'min';
|
|
case SUM = 'sum';
|
|
}
|