PHPackages                             chalhoub/module-shopfinder - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. chalhoub/module-shopfinder

ActiveMagento2-module

chalhoub/module-shopfinder
==========================

Chalhoub ShopFinder Module

1.0.2(3y ago)015GPL-3.0PHP

Since Oct 13Pushed 3y ago1 watchersCompare

[ Source](https://github.com/ilyasmuyiwa/chalhoub-module-shopfinder)[ Packagist](https://packagist.org/packages/chalhoub/module-shopfinder)[ RSS](/packages/chalhoub-module-shopfinder/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (3)DependenciesVersions (4)Used By (0)

```
``chalhoub/module-shopfinder``

```

- [Main Functionalities](#markdown-header-main-functionalities)
- [Installation](#markdown-header-installation)
- [Configuration](#configuration)
- [Specifications](#markdown-header-specifications)
- [Attributes](#markdown-header-attributes)

Main Functionalities
--------------------

[](#main-functionalities)

Chalhoub ShopFinder Module

Installation
------------

[](#installation)

\* = in production please use the `--keep-generated` option

### Type 1: Zip file

[](#type-1-zip-file)

- Unzip the zip file in `app/code/Chalhoub`
- Enable the module by running `php bin/magento module:enable Chalhoub_ShopFinder`
- Apply database updates by running `php bin/magento setup:upgrade`\*
- Flush the cache by running `php bin/magento cache:flush`

Configuration
-------------

[](#configuration)

You should be able to see the ShopFinder module in admin at Content &gt; ShopFinder

GraphQl Sample Request
----------------------

[](#graphql-sample-request)

### Endpoint -&gt;

[](#endpoint---httpmagento2localgraphql)

- To fetch all the shops

    ```
    {
       fetchShop(
        pageSize: 10
        currentPage: 1
      ) {
        total_count
        items {
          shop_name
          Identifier
          Country
          Image
        }
      }
    }

    ```
- To fetch a single Shop using Identifier

    ```
     {
       fetchShop(
         filter: { Identifier: { like: "test" } }
         pageSize: 10
         currentPage: 1
       ) {
         total_count
         items {
           shop_name
           Identifier
           Country
           Image
         }
       }
     }

    ```
- To Update Shop

    ```
    mutation {
     updateShop(
         id: 2,
         input: {
           shop_name: "Chalhoub Store"
           Identifier: "new-identifier"
         }
       ) {
         shop {
           shop_name
           Identifier
         }
       }
    }

    ```
- To Create Shop

    ```
    mutation {
       createShop(
         input: {
           shop_name: "Ilyas big Store"
           Identifier: "snicestftssss"
           Country: "AQ"
           Image: "test.png"

         }
       ) {
         shop {
           shop_name
         }
       }
    }

    ```
- To delete a Shop

```
mutation {
deleteShop(id: 2)
}

```

###  Health Score

23

—

LowBetter than 27% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~1 days

Total

3

Last Release

1303d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/9ad0a4146be063167680c54fc05317fbb7ac7a5fa47e92326f70d8f106f03f25?d=identicon)[ilyas](/maintainers/ilyas)

---

Top Contributors

[![ilyasmuyiwa](https://avatars.githubusercontent.com/u/7964412?v=4)](https://github.com/ilyasmuyiwa "ilyasmuyiwa (5 commits)")

### Embed Badge

![Health badge](/badges/chalhoub-module-shopfinder/health.svg)

```
[![Health](https://phpackages.com/badges/chalhoub-module-shopfinder/health.svg)](https://phpackages.com/packages/chalhoub-module-shopfinder)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
